/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* =========================================
   FUENTES
========================================= */
@font-face {
    font-family: 'AcuminDefault';
    src: url('assets/SR/AcuminVariableConcept-Default.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AcuminMedium';
    src: url('assets/SR/AcuminVariableConcept-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AcuminBold';
    src: url('assets/SR/AcuminVariableConcept-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AcuminWideBold';
    src: url('assets/SR/AcuminVariableConcept-WideBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* =========================================
   HEADER
========================================= */
.site-header {
    width: 100%;
    background-color: #0b2b6b; /* Color sólido para páginas internas */
    color: #ffffff;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

/* Clase dinámica para el Home */
.site-header.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 999;
}


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

.header-logo img {
    max-width: 250px;
    height: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.header-phone {
    font-family: 'AcuminWideBold', sans-serif;
    font-size: 16px;
    margin-right: 20px;
    letter-spacing: 0.5px;
}

.header-socials {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.8;
}

.header-nav .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav .main-menu li {
    display: flex;
    align-items: center;
}

/* Slashes separadores (/) aplicados vía CSS */
.header-nav .main-menu li:not(:last-child)::after {
    content: '/';
    color: #ffffff;
    margin-left: 20px;
    font-family: 'AcuminDefault', sans-serif;
    font-size: 18px;
}

.header-nav .main-menu a {
    font-family: 'AcuminDefault', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.header-nav .main-menu a:hover {
    color: #d1d1d1;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background-image: url('assets/SR/fondoFooter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-logo-col {
    flex: 1.2;
}

.footer-logo-col img {
    max-width: 220px;
}

.footer-col h3 {
    font-family: 'AcuminBold', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-commitment p {
    font-family: 'AcuminMedium', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer-nav .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav .footer-menu li {
    margin-bottom: 8px;
}

.footer-nav .footer-menu a {
    font-family: 'AcuminMedium', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}

.footer-nav .footer-menu a:hover {
    text-decoration: underline;
}

.footer-social-col .footer-socials {
    display: flex;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'AcuminMedium', sans-serif;
    font-size: 14px;
    margin: 0;
    word-spacing: 2px;
}

/* Ajustes responsivos básicos */
@media (max-width: 991px) {
    .header-flex { flex-direction: column; gap: 20px; text-align: center; }
    .header-right { align-items: center; }
    .footer-top { flex-wrap: wrap; }
    .footer-col { min-width: 45%; }
}

@media (max-width: 768px) {
    .header-nav .main-menu { flex-direction: column; gap: 10px; }
    .header-nav .main-menu li:not(:last-child)::after { display: none; }
    .footer-col { min-width: 100%; text-align: center; }
    .footer-socials { justify-content: center; }
}

/* =========================================
   CONTENEDOR A ANCHO COMPLETO
========================================= */
.container {
    width: 100%;
    max-width: 100%; /* Quitamos el límite de 1200px */
    padding: 0 4%; /* Usamos porcentaje para mantener un margen seguro en los bordes */
    box-sizing: border-box;
    margin: 0 auto;
}

/* =========================================
   FOOTER (FORZADO ABSOLUTO A ANCHO COMPLETO)
========================================= */
.site-footer {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding-top: 60px;
    box-sizing: border-box;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    text-align: center;
    box-sizing: border-box;
}

.proto-text-col p, 
.elementor-widget-text-editor p {
    font-style: normal !important;
    font-synthesis: none !important;
    font-variation-settings: 'slnt' 0, 'ital' 0 !important; /* Apaga la cursiva interna de la fuente variable */
}