/* ===== NOVO LAYOUT HERO - 2 COLUNAS COM FOTO ===== */
.hero-two-columns {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.hero-two-columns::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.5;
}

.hero-two-columns .container {
	position: relative;
	z-index: 2;
}

.hero-image-wrapper {
	width: 100%;
	height: 600px;
	background-image: url('/images/equipamentos/torre-vibratoria/torre-vibratoria-vpa-destaque-2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(220,20,60,0.1) 50%, transparent 70%);
	animation: shimmer 3s infinite;
	pointer-events: none;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-left: 40px;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	color: #ffffff;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgba(220,20,60,0.4);
	animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
	0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(220,20,60,0.4); }
	50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(220,20,60,0.6); }
}

.hero-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 25px;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
	background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hero-description {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.85);
	line-height: 1.8;
	margin-bottom: 35px;
	font-weight: 300;
}

.hero-features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 35px 0;
}

.hero-features-list li {
	color: rgba(255,255,255,0.9);
	font-size: 1.1rem;
	margin-bottom: 15px;
	padding-left: 35px;
	position: relative;
	font-weight: 400;
}

.hero-features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	color: #ffffff;
	box-shadow: 0 5px 15px rgba(220,20,60,0.3);
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}

.hero-tag {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	padding: 8px 18px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.hero-tag:hover {
	background: rgba(220,20,60,0.2);
	border-color: #DC143C;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991px) {
	.hero-two-columns {
		padding: 60px 0;
	}

	.hero-image-wrapper {
		position: relative;
		width: 100%;
		height: 400px;
		margin-bottom: 40px;
	}

	.hero-content-wrapper {
		padding-left: 0;
	}

	.hero-title {
		font-size: 2.4rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}
}

@media (max-width: 767px) {
	.hero-image-wrapper {
		height: 300px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-features-list li {
		font-size: 1rem;
	}
}

/* Estilos para Seção de Desafios - Novo Layout */
.challenges-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.challenges-section h5 {
	color: #2c3e50 !important;
	font-size: 2.2rem;
	margin-bottom: 30px;
}

.challenges-section p {
	color: #5a6c7d;
	font-size: 1.2rem;
	line-height: 1.6;
}

.challenges-section .margin-six-bottom {
	margin-bottom: 30px !important;
}

.challenge-card {
	background: rgba(255,255,255,0.95);
	border-radius: 20px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.challenge-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #DC143C, #8B0000);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.challenge-card:hover::before {
	transform: scaleX(1);
}

.challenge-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.2);
	background: rgba(255,255,255,1);
}

.challenge-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px auto;
	position: relative;
	box-shadow: 0 10px 30px rgba(220,20,60,0.3);
}

.challenge-icon i {
	font-size: 2rem;
	color: #ffffff;
}

.challenge-card h6 {
	color: #2c3e50;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}

.challenge-card p {
	color: #5a6c7d;
	font-size: 1rem;
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

/* Estilos para Nova Lista de Soluções - Layout Vertical */
.solution-list {
	padding: 20px 0;
}

.solution-item {
	margin-bottom: 40px;
}

.solution-item:last-child {
	margin-bottom: 0;
}

.solution-content {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 25px;
	background: rgba(255,255,255,0.95);
	border-radius: 15px;
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.solution-content:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	background: rgba(255,255,255,1);
}

.solution-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 25px rgba(220,20,60,0.3);
}

.solution-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.solution-text {
	flex: 1;
}

.solution-text h6 {
	color: #2c3e50;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}

.solution-text p {
	color: #5a6c7d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Estilos para o Vídeo */
.video-wrapper {
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.video-container {
	position: relative;
	background: #f8f9fa;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: auto;
	min-height: 480px;
}

.video-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-container iframe {
	border-radius: 10px;
	display: block;
	width: 100%;
	height: 450px;
	border: none;
}

/* Responsividade para a nova seção */
@media (max-width: 991px) {
	.solution-content {
		padding: 20px;
		gap: 20px;
	}

	.solution-icon {
		width: 50px;
		height: 50px;
	}

	.solution-icon i {
		font-size: 1.3rem;
	}

	.solution-text h6 {
		font-size: 1.1rem;
	}

	.solution-text p {
		font-size: 0.9rem;
	}

	.video-container {
		min-height: 320px;
	}

	.video-container iframe {
		height: 300px;
	}
}

@media (max-width: 767px) {
	.solution-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.solution-icon {
		align-self: center;
	}

	.video-container {
		min-height: 270px;
	}

	.video-container iframe {
		height: 250px;
	}

	.video-wrapper {
		margin-top: 30px;
	}

	.row.align-items-start {
		align-items: stretch !important;
	}
}

/* Estilos para Seção de Features - Novo Layout */
.features-detailed-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-detailed-section h5 {
	color: #2c3e50 !important;
	font-size: 2.2rem;
	margin-bottom: 30px;
	position: relative;
}

.features-detailed-section h5::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.features-detailed-section .margin-six-bottom {
	margin-bottom: 30px !important;
}

.feature-modern-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	transition: all 0.4s ease;
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-modern-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon-modern {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	position: relative;
	box-shadow: 0 15px 35px rgba(102,126,234,0.3);
	transition: all 0.3s ease;
}

.feature-icon-modern i {
	font-size: 2.5rem;
	color: #ffffff;
}

.feature-number {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
	font-size: 1.1rem;
	box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.feature-modern-card h5 {
	color: #2c3e50 !important;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.feature-modern-card h5::after {
	display: none;
}

.feature-modern-card p {
	color: #5a6c7d;
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
}

/* Estilos para Ícones Modernos da Seção Revolução Tecnológica */
.modern-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	margin-bottom: 20px;
	flex-shrink: 0;
	box-shadow: 0 8px 25px rgba(220,20,60,0.3);
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.modern-icon-wrapper {
    position: relative;
    margin: 0;
    flex-shrink: 0;
}

.feature-box-5:hover .modern-icon-wrapper {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(220,20,60,0.4);
}

.feature-box-5 {
    display: flex;
    align-items: center; /* centraliza ícone e texto verticalmente */
    gap: 20px;
    min-height: 60px;
    position: relative;
    padding-left: 0;
}

.feature-box-5 .feature-content {
	margin-left: 0;
	margin-top: 0;
}

.torre-feature-box {
    display: flex;
    align-items: center;   /* Ícone alinhado verticalmente ao texto */
    gap: 20px;             /* Espaço entre ícone e conteúdo */
    min-height: 60px;
}

.torre-feature-box .modern-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;    /* Centraliza o ícone no quadrado */
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 8px 25px rgba(220,20,60,0.3);
    transition: all 0.3s ease;
}

.torre-feature-box .modern-icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
}

.torre-feature-box .feature-content {
    flex: 1;
}

.torre-feature-box .feature-content h6,
.torre-feature-box .feature-content .text-extra-dark-gray {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.torre-feature-box .feature-content p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Ajustes RESPONSIVOS (mobile) para a seção "Revolução Tecnológica" ===== */
@media (max-width: 991.98px) {
  /* 1) Foto em UMA linha e conteúdo em OUTRA (empilha 100%) */
  .torre-revolucao .row.row-cols-1.row-cols-lg-2 > .col,
  .torre-revolucao .row.row-cols-1.row-cols-lg-2 > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* 2) Altura e borda da foto no mobile para não "espremer" nada */
  .torre-revolucao .cover-background {
    height: 240px !important;
    border-radius: 16px !important;   /* sem canto "comido" no mobile */
    background-position: center !important;
    background-size: cover !important;
  }

  /* 3) Respiro no container de texto */
  .torre-revolucao .padding-five-all {
    padding: 20px !important;
  }

  /* 4) TÓPICOS em largura total (cada um ocupando 100% da linha) */
  .torre-revolucao .torre-features-row > .col,
  .torre-revolucao .torre-features-row > [class*="col-"],
  .torre-revolucao .torre-features-row > .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* 5) Zerar qualquer largura "w-95" que crie resíduo de margem */
  .torre-revolucao .w-95,
  .torre-revolucao .feature-content .w-95 {
    width: 100% !important;
  }

  /* 6) Tópico: manter ícone à esquerda do texto (sem empurrar nada) */
  .torre-revolucao .torre-feature-box {
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: left !important;
  }
  .torre-revolucao .torre-feature-box .feature-content {
    text-align: left !important;
  }
}

/* ===== CSS Responsivo para a Tabela de Comparação ===== */
@media (max-width: 968px) {
	.comparison-modern-table .comparison-header,
	.comparison-modern-table .comparison-row {
		grid-template-columns: 1fr !important;
	}

	.comparison-modern-table .comparison-header > div:first-child {
		display: none;
	}

	.comparison-modern-table .comparison-row > div:first-child {
		background: #1a1a1a !important;
		color: #fff !important;
		justify-content: center;
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.comparison-modern-table .comparison-row > div:first-child i {
		color: #e91e63 !important;
	}
}

/* ===== Workshop Floating Banner ===== */
.workshop-floating-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e91e63;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    z-index: 9999;
    animation: slideInLeft 0.5s ease-out, pulse 2s infinite 2s;
    font-family: 'Poppins', Arial, sans-serif;
}

.workshop-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.workshop-close-btn:hover {
    color: #e91e63;
}

.workshop-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.workshop-logo img {
    width: 80px;
    height: auto;
    margin: 0 auto;
}

.workshop-text {
    width: 100%;
}

.workshop-text h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    font-style: normal;
}

.workshop-text p {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    font-style: normal;
}

.workshop-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.workshop-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: white;
    text-decoration: none;
}

.workshop-cta-btn i {
    font-size: 14px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    }
    50% {
        box-shadow: 0 15px 45px rgba(233, 30, 99, 0.4);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .workshop-floating-banner {
        width: 320px;
        bottom: 15px;
        left: 15px;
    }

    .workshop-content {
        padding: 15px;
        gap: 12px;
    }

    .workshop-logo img {
        width: 65px;
    }

    .workshop-text h3 {
        font-size: 14px;
    }

    .workshop-text p {
        font-size: 12px;
    }

    .workshop-cta-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .workshop-floating-banner {
        width: 280px;
    }

    .workshop-content {
        padding: 12px;
        gap: 10px;
    }

    .workshop-logo img {
        width: 60px;
    }
}

/* Esconder banner quando fechado */
.workshop-floating-banner.hidden {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.workshop-floating-banner:not(.hidden) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
