/*
Theme Name: WL Indústria e Comércio de Metais
Author: Leonardo Leandro Dev
Description: Professional industrial theme for WL Indústria e Comércio de Metais.
Version: 1.0.0
Text Domain: wl-metais
*/

@font-face {
    font-family: 'Bebas Neue';
    src: url('./assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/Open_Sans/static/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/Open_Sans/static/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Oswald';
    src: url('./assets/fonts/Oswald/static/Oswald-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('./assets/fonts/Oswald/static/Oswald-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('./assets/fonts/Rajdhani/Rajdhani-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Rajdhani';
    src: url('./assets/fonts/Rajdhani/Rajdhani-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('./assets/fonts/Roboto_Condensed/static/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Condensed';
    src: url('./assets/fonts/Roboto_Condensed/static/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --wl-orange: #e58c2c;
    --wl-grey: #8f9095;
    --wl-white: #ffffff;
    --wl-dark: #333;
    --wl-text: #444;
    --wl-light-grey: #f8f8f8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--wl-text);
    margin: 0;
    line-height: 1.6;
    padding-left: 1rem;
    padding-right: 1rem;
}

h1, h2 {
    font-family: 'Bebas Neue', sans-serif;

    background: linear-gradient(0deg, #e0ba88 0%, #e97313 100%);
    -webkit-background-clip: text;

    -webkit-text-stroke: 0.3px #aa5611;
    -webkit-text-fill-color: transparent;

    text-transform: uppercase;
}
 h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;

    background: linear-gradient(0deg, #e0ba88 0%, #e97313 100%);
    -webkit-background-clip: text;

  
    -webkit-text-fill-color: transparent;

    text-transform: uppercase;
}
p{
  font-family: 'Open Sans', sans-serif ;  
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: var(--wl-white);
    border-bottom: 2px solid var(--wl-orange);
}
.utility-nav {
    background: var(--wl-grey);
    padding: 5px 0;
    font-size: 11px;
}
.utility-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
.utility-nav li {
    margin-left: 15px;
}
.utility-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    margin-left: 25px;
}
.main-navigation a {
    text-decoration: none;
    color: var(--wl-dark);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}
.main-navigation a:hover {
    color: var(--wl-orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--wl-dark);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--wl-white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
    }
    .main-navigation.active {
        display: block;
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-navigation li {
        margin: 10px 0;
        margin-left: 0;
    }
    .main-navigation a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    .site-logo a {
        flex-direction: column;
        text-align: left;
    }
    .site-logo span {
        font-size: 14px !important;
    }
    .main-nav-wrapper {
        position: relative;
        flex-wrap: wrap;
    }
}


/* Hero */
.hero {
    background: var(--wl-orange);
    color: var(--wl-white);
    padding: 80px 0;
    text-align: center;
}
.hero h1 { color: #fff; }

/* Grids */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Footer */
.site-footer {
    background: var(--wl-grey);
    color: #fff;
    padding: 50px 0;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer-column h4 { color: #fff; margin-bottom: 15px; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column a { color: #ccc; text-decoration: none; font-size: 14px; }

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        display: inline-block;
        text-align: left;
    }
}


 /* Hero Section with Video Background */
.hero-video-section {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: auto;
    margin-right: auto;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #fff; /* White for better contrast on video */
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--wl-orange);
    text-transform: none;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.4rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .container {
        padding: 0 15px;
    }
    .grid {
        grid-template-columns: 1fr !important;
    }
    .card img {
        max-height: 200px;
    }
    .site-logo img {
        height: 40px !important;
    }
    .site-logo span {
        font-size: 12px !important;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-video-section {
        height: 40vh;
    }
    .site-header {
        padding: 10px 0;
    }
    .utility-nav {
        display: none;
    }
}


/*pagina apresentação*/
.apres-section-sobre{
    width:100%;
    max-height: 700px;
}
.apres-sobre-grid{
    display:flex;
    align-items:stretch;
    justify-content:center;
}

.apres-sobre-texto{
    padding:60px;
    background:#f3f3f3;
    max-width: 40%;
}

.apres-sobre-texto h2{
    font-size:48px;
    margin:10px 0;
    line-height:1.4;

}

.apres-sobre-texto p{
    font-size:18px;
    line-height:1.4;
    color:#555;
}

.apres-sobre-imagem{
    
    min-width:300px;
    height:100%;
}

.apres-sobre-imagem img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.apres-sobre-stats{
    background:#e38a2d;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding: 1px 80px 1px 80px;
    max-width: 20%;

}

.apres-stat{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,0.4);
    padding:25px 0;
}

.apres-stat:last-child{
    border-bottom:none;
}

.apres-numero{
    font-size:40px;
    font-weight:bold;
    color:white;
    padding: 1px 40px 1px 10px
}

.apres-texto{
    font-size:14px;
    font-weight:bold;
    color:white;
    text-align:right;
}

@media (max-width: 900px) {
    .apres-section-sobre {
        max-height: none;
    }
    .apres-sobre-grid {
        flex-direction: column;
    }
    .apres-sobre-texto {
        max-width: 100%;
        padding: 30px;
    }
    .apres-sobre-texto h2 {
        font-size: 32px;
    }
    .apres-sobre-texto p {
        font-size: 16px;
    }
    .apres-sobre-imagem {
        min-width: 100%;
        max-height: 250px;
    }
    .apres-sobre-stats {
        max-width: 100%;
        padding: 20px 40px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .apres-stat {
        flex-direction: column;
        padding: 15px;
        border-bottom: none;
    }
    .apres-numero {
        font-size: 28px;
        padding: 0 10px;
    }
    .apres-texto {
        text-align: center;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .apres-sobre-texto {
        padding: 20px;
    }
    .apres-sobre-texto h2 {
        font-size: 26px;
    }
    .apres-sobre-stats {
        flex-direction: column;
    }
}
