/* 
 * CSS Personalizado para o Site Fibracout - VERSÃO MODERNA
 * Estilo: industrial moderno, minimalista com animações
 * Paleta de cores: Cinza aço, Branco, Preto, Verde
 */

:root {
    /* Paleta de cores moderna */
    --color-steel: #356d38; /* Green */
    --color-steel-dark: #1d1d1d; /* Keep or change to darker green */
    --color-steel-light: #8FA3B0;
    --color-white: #FFFFFF;

    --color-laranja: #FF6B35;
    --color-off-white: #F8F9FA;
    --color-black: #1A1A1A;
    --color-accent: #548156; /* Green */
    --color-accent-dark: #00B894;
    --color-accent-light: #E6F9F5;
    --gradient-steel: linear-gradient(135deg, #397772 0%, #266080 100%);
    --gradient-accent: linear-gradient(135deg, #06b70e 0%, #00B894 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-serif: 'Montserrat', sans-serif;
    
    /* Animações */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-black);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 60px !important;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Delay para animações em sequência */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Elementos com opacidade inicial para animação */
.js-animate {
    opacity: 0;
}

.text-laranja {
    color: var(--color-laranja);
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.section-title:hover::after {
    width: 100%;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center .section-title:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

/* Header Moderna */
.header-wrapper {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: var(--gradient-steel) !important;
    font-size: 0.97rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.01em;
}

.header-top .bi {
    opacity: 0.85;
    font-size: 1.1em;
}

.header-top a {
    color: #fff;
    opacity: 0.92;
    transition: color 0.2s, opacity 0.2s;
}

.header-top a:hover {
    color: var(--color-accent-light);
    opacity: 1;
    text-decoration: underline;
}

.header-top .small {
    font-size: 0.97em;
    font-weight: 500;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 60px;
}

#main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#main-menu li {
    margin-left: 30px;
}

#main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s;
    padding: 5px;
}

#main-menu a:hover,
#main-menu a.current {
    color: var(--color-accent-darkr-);
    border-bottom: #00B894 2px solid;
    transition: 0.2s ease-in-out;
    
}

.mobile-toggle {
    display: none;
}

/* Hero Sections Modernas */
.hero-section {
    padding: 80px 120px 30px 120px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-steel);
    color: var(--color-white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 115, 126, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    -webkit-text-fill-color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-container {
    position: relative;
}

.hero-image-float {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.hero-image-float:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.hero-image-float:nth-child(1) {
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-image-float:nth-child(2) {
    bottom: 0;
    right: 150px;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botões Modernos */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 28px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-off-white);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-light);
    transform: translateY(-3px);
    color: var(--color-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Carousel Styles */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

#heroCarousel .carousel-inner {
    padding-bottom: 60px; /* Espaço para os indicadores */
}

#heroCarousel .carousel-indicators {
    bottom: 15px;
} 

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition-smooth);
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent-light);
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

/* Cards Modernos */
.card-modern {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-modern:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.product-card {
    border: 1px solid rgba(93, 115, 126, 0.1);
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--color-accent);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 2;
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

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

.bg-light-modern {
    background-color: #f8f9fa;
    position: relative;
}

.bg-light-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}


.bg-dark-modern {
    background-color: #0f0f0f;
    position: relative;
}

.bg-dark-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* Diferenciais Modernos */
.diferencial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.diferencial-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.diferencial-card:hover .diferencial-icon {
    transform: rotate(0deg);
}

.diferencial-icon i {
    font-size: 2rem;
    color: var(--color-white);
    transform: rotate(-45deg);
    transition: var(--transition-smooth);
}

.diferencial-card:hover .diferencial-icon i {
    transform: rotate(0deg);
}

/* Formulário Moderno */
.form-control-modern {
    border: 2px solid rgba(93, 115, 126, 0.1);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--color-white);
}

.form-control-modern:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-steel-dark);
}

/* Formulário com spans (Contato) */
#form-contato .form-label {
    display: block;
    font-weight: 600;
    color: var(--color-steel);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}
#form-contato .input-span {
    display: block;
    width: 100%;
}
#form-contato .form-control-modern {
    border: 1px solid #dbe6e4;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    background: #f8fafb;
    color: var(--color-black);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    margin-bottom: 0.5rem;
}
#form-contato .form-control-modern:focus {
    border-color: var(--color-steel);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(54,109,56,0.08);
}
#form-contato textarea.form-control-modern {
    min-height: 120px;
    resize: vertical;
}
#form-contato .form-check-label {
    font-size: 0.97em;
    color: var(--color-black);
}
#form-contato .form-check-input:checked {
    background-color: var(--color-steel);
    border-color: var(--color-steel);
}
@media (max-width: 767.98px) {
    #form-contato .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #form-contato .form-label {
        font-size: 1rem;
    }
}

/* Botão Flutuante WhatsApp Moderno */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-accent);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
    z-index: 1000;
    transition: var(--transition-bounce);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.6);
}

/* Footer Moderno */
.footer-modern {
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Mapa Moderno */
.map-container-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.map-placeholder-modern {
    height: 400px;
    background: linear-gradient(135deg, var(--color-steel-light) 0%, var(--color-steel-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.map-placeholder-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300d4aa' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Contador Estatísticas */
.stats-container {
    background: var(--gradient-steel);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300d4aa' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 100px 20px 100px 20px !important;
    }

    #heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    display: none;
}
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0 80px;
    }

    /* Mais espaço interno no carousel para evitar sobreposição dos indicadores */
    #heroCarousel .carousel-inner {
        padding-bottom: 90px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-image-float {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .navbar-brand img {
        height: 35px;
    }
}


/* Estilos adicionais para páginas específicas */

/* Página Sobre */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 4px var(--color-accent);
}

.timeline-date {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-content {
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--color-steel-dark);
}

/* Página Catálogo */
.catalogo-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition-smooth);
}

.catalogo-image:hover {
    transform: scale(1.02);
}

.catalogo-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.gallery-item {
    transition: var(--transition-smooth);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    text-align: center;
}

.accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
    background-color: var(--color-white);
    border: 1px solid rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-accent-light);
    color: var(--color-accent-dark);
    border-color: var(--color-accent);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 170, 0.25);
    border-color: var(--color-accent);
}

/* Página Contato */
.form-control-modern:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vision-card {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.vision-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

/* Lista de vantagens */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-item i {
    margin-top: 3px;
}

.advantage-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.advantage-image img {
    width: 100%;
    height: auto;
}

/* Badge para tipos de aço */
.steel-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -28px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 8px;
    }
    
    .timeline-item::before {
        left: -12px;
    }
    
    .catalogo-card .row {
        flex-direction: column;
    }
}

/* Product Launch */
.product-launch {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

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

.product-launch img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-launch h4 {
    margin-bottom: 10px;
    color: var(--color-steel);
}

.product-launch p {
    color: #666;
    margin-bottom: 15px;
}

/* Testimonial */
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial cite {
    color: var(--color-steel);
    font-weight: bold;
}

/* Logo Large */
.logo-large img {
    max-width: 300px;
    height: auto;
}

/* Corporate Card */
.corporate-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition-smooth);
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* Corporate Info */
.corporate-info {
    color: #fff;
}

.corporate-info p {
    margin-bottom: 0.5rem;
}

/* Corporate Image */
.corporate-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 400px;
    margin: 0 auto;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    object-fit: cover;
}

.corporate-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

/* Responsividade para Corporate Image */
@media (max-width: 991.98px) {
    .corporate-image {
        width: 100%;
        max-width: 400px;
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .corporate-image {
        width: 100%;
        max-width: 350px;
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .corporate-image {
        width: 100%;
        max-width: 300px;
        height: 240px;
    }
}

/* Contact Form */
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    border-color: var(--color-steel);
    box-shadow: 0 0 0 0.2rem rgba(6, 183, 14, 0.25);
}

.contact-form .btn-primary {
    background: var(--color-steel);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-form .btn-primary:hover {
    background: var(--color-steel-dark);
    transform: translateY(-2px);
}

/* Header Top Profissional */
.header-top {
    background: var(--gradient-steel) !important;
    font-size: 0.97rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.01em;
}

.header-top .bi {
    opacity: 0.85;
    font-size: 1.1em;
}

.header-top a {
    color: #fff;
    opacity: 0.92;
    transition: color 0.2s, opacity 0.2s;
}

.header-top a:hover {
    color: var(--color-accent-light);
    opacity: 1;
    text-decoration: underline;
}

.header-top .small {
    font-size: 0.97em;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .header-top .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .header-top .d-flex.align-items-center.gap-3 {
        margin-top: 0.5rem;
    }
}

/* Navbar Bootstrap Custom */
.navbar {
    background: var(--color-white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
    transition: var(--transition-smooth);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-toggler {
    border: none;
    background: transparent;
    margin-left: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    width: 100%;
    text-align: center;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin: 0.25rem 0;
    transition: background 0.2s, color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(148, 148, 148, 0.08);
    color: var(--color-accent-dark) !important;
}

@media (max-width: 992px) {
.nav-link {
        background-color: var(--color-accent-light);
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        justify-content: end;
    }

    

}

body {
    padding-top: 60px !important;
}