/* Estilos Corporativos - Inspirado en Probal SRL */

:root {
    --primary-color: #003366;
    /* Azul Bowles */
    --secondary-color: #004488;
    --accent-color: #c09b2e;
    /* Dorado parecido al de Probal */
    --dark-bg: #212529;
    --light-bg: #f7f7f7;
    --text-color: #777;
    --heading-color: #222;
}

/* Ajuste de Escala Global (Simulación de Zoom) */
html {
    font-size: 18px;
    /* Base aumentada */
}

@media (min-width: 1400px) {
    html {
        font-size: 20px;
        /* Más grande en pantallas anchas */
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 700;
}

/* Header Top */
.header-top {
    background-color: var(--dark-bg);
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 0;
}

.header-top a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.header-top a:hover {
    color: var(--white);
}

.header-top i {
    margin-right: 5px;
    color: var(--primary-color);
    /* Toque azul en iconos */
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: #444 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Slider (Simulado con Bootstrap Carousel) */
.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Oscurecer imagen */
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    padding: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ddd;
}

/* CTA Section (Looking For) */
.cta-section {
    background-color: var(--primary-color);
    padding: 50px 0;
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

.cta-section span.highlight {
    color: var(--accent-color);
    font-style: italic;
}

.btn-cta {
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: white;
    color: var(--primary-color);
}

/* About Us & Stats */
.section-padding {
    padding: 80px 0;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.counter-box strong {
    display: block;
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 700;
}

.counter-box label {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #777;
}

/* Certifications */
.cert-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
}

.cert-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

/* Timeline / Steps */
.step-item {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 51, 102, 0.1);
    /* Azul muy claro */
    margin-right: 20px;
    min-width: 60px;
    line-height: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Products */
.product-card {
    border: none;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.product-card .img-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.product-card img {
    transition: transform 0.5s;
    width: 100%;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card-body {
    background: #fff;
    padding: 20px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover .product-card-body {
    border-bottom-color: var(--primary-color);
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.9rem;
    color: #888;
}

/* Product Overlay Styles */
.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.9);
    /* Azul corporativo semitransparente */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay ul li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #777;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Contact Form */
.form-control {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 0;
}

.form-control:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: var(--primary-color);
}