@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --simetal-yellow: #ffc107;
    /* Amarelo do logo */
    --simetal-orange: #ff9900;
    /* Laranja degradê */
    --simetal-dark: #212529;
    --simetal-blue: #003366;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
    /* Evita rolagem lateral indesejada */
}

/* --- MENU --- */
.nav-link {
    font-size: 0.75rem !important;
    /* Fonte bem pequena e caixa alta igual print */
    font-weight: 800 !important;
    color: #444 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.nav-link.active-link {
    color: var(--simetal-yellow) !important;
}

.nav-link:hover {
    color: var(--simetal-orange) !important;
}

/* --- BANNER --- */
.hero-carousel-item {
    position: relative;
    aspect-ratio: 16/7;
    max-height: 650px;
    overflow: hidden;
    background-color: #003366;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 650px;
    z-index: 10;
}

.animated-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffc107;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(4.5rem * 1.1 * 2);
    overflow: hidden;
}

.animated-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    max-width: 500px;
    margin-left: auto;
    margin-top: 15px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.active .animated-title,
.active .animated-subtitle {
    opacity: 1;
    transform: translateX(0);
}

.glass-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.active .glass-btn {
    opacity: 1;
    transform: translateY(0);
}

.glass-btn:hover {
    background: white;
    color: #003366;
    transform: scale(1.05);
}

/* --- NOVIDADES --- */
/* Removendo o efeito "flutuante" e deixando clean como o original */
.section-novidades {
    padding-top: 60px;
    padding-bottom: 60px;
}

.title-novidades {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003366;
    /* Azul escuro do Simetal */
}

.subtitle-novidades {
    color: var(--simetal-yellow);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--simetal-yellow);
    margin-bottom: 10px;
}

.btn-dark-custom {
    background: #111;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 20px;
}

/* --- ONDE ESTAMOS --- */
.bg-orange-gradient {
    /* Degradê laranja forte igual ao print */
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    position: relative;
    min-height: 500px;
}

/* Pontinhos de fundo */
.bg-orange-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 10px 10px;
}

/* --- NOVOS ESTILOS (V5) --- */
.fw-black {
    font-weight: 900;
}

.text-custom-blue {
    color: var(--simetal-blue);
}

/* Hero Caption Customizado */
.hero-caption-custom {
    position: absolute;
    top: 50%;
    right: 10%;
    /* Alinhado à direita */
    transform: translateY(-50%);
    text-align: right;
    max-width: 600px;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
}

.bg-dark-simetal {
    background-color: #1a1a1a;
}

/* --- PREMIUM UI KIT --- */

/* Tipografia de Impacto */
.display-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #ffb700;
    /* Amarelo Ouro Simetal */
}

/* Efeito de Card Premium (Flutuar) */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Botão "Ver Mais" elegante */
.btn-link-custom {
    color: #003366;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.btn-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffb700;
    transition: width 0.3s;
}

.btn-link-custom:hover::after {
    width: 100%;
}

/* Seção de Boas-Vindas */
.welcome-section {
    background: radial-gradient(circle at top right, #fffbf0, #ffffff);
    /* Sutil degradê */
    border-bottom: 1px solid #f0f0f0;
}

/* Ajuste da Imagem da FIERN (Máscara suave) */
.fiern-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --- PREMIUM UI --- */
.bg-premium-orange {
    background: linear-gradient(135deg, #ffb700 0%, #ff8800 100%);
    /* Laranja Rico */
    position: relative;
}

.premium-building-img {
    border: 10px solid rgba(255, 255, 255, 0.2);
    /* Borda de vidro */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    /* Sombra 3D */
    border-radius: 5px;
    transform: rotate(-2deg);
    /* Charme sutil */
    transition: transform 0.3s;
}

.premium-building-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.bg-premium-dark {
    background-color: #212529;
    /* Chumbo */
}

.map-frame {
    border: 1px solid #444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

/* --- NOVA SEÇÃO ONDE ESTAMOS (REF: SITE ANTERIOR) --- */
.location-section {
    background-color: #1a1a1a;
    min-height: 600px;
    overflow: hidden;
}

.location-orange-side {
    background: linear-gradient(180deg, #d32f2f 0%, #ff8c00 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 4px solid #ffb700;
}

.location-dots {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 60px;
    height: 120px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
}

.location-waves {
    position: absolute;
    top: 60px;
    right: 15%;
    width: 120px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q 12 0 25 10 T 50 10 T 75 10 T 100 10' fill='none' stroke='white' stroke-width='2' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.location-img-box {
    position: relative;
    z-index: 5;
    width: 85%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.location-img-box:hover {
    transform: translateY(-10px) scale(1.02);
}

.location-content-side {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-visit-tag {
    color: #ff4d4d;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.location-visit-tag::before,
.location-visit-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #ff4d4d;
}

.location-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.location-address-text {
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
}

.location-map-wrapper {
    width: 100%;
    max-width: 650px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}