/* custom_css c443198 */
/* IMPORTACIÓN DE FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:wght@700;800&display=swap');

/* HERO WRAPPER */
.sgh-hero-wrapper {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    min-height: 100vh !important;
    background: linear-gradient(135deg, #173e43 0%, #061f1d 100%) !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-start !important;
    padding-bottom: 100px !important;
    font-family: 'Inter', sans-serif !important;
}

/* CANVAS */
#sgh-canvas-nexus {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    opacity: 0.3 !important;
    pointer-events: none !important;
}

/* CONTENEDOR PRINCIPAL */
.sgh-hero-container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 160px 20px 0 20px !important;
}

/* TIPOGRAFÍA */
.sgh-hero-h1 {
    font-family: 'Playfair Display', serif !important;
    color: #ffffff !important;
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
    max-width: 850px !important;
}

.sgh-hero-p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    max-width: 700px !important;
    font-weight: 300 !important;
}

/* BOTÓN DINÁMICO */
.sgh-hero-btn {
    display: inline-block !important;
    background: #f05a5e !important;
    color: white !important;
    padding: 22px 50px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 2px solid #f05a5e !important;
    min-width: 380px !important;
    text-align: center !important;
}

.sgh-hero-btn:hover {
    background: #ffffff !important;
    color: #333333 !important;
    border-color: #3fb0ac !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
}

.btn-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

#sgh-lines-hover-hero {
    display: flex !important;
    gap: 8px !important;
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: all 0.4s ease !important;
}

.sgh-hero-btn:hover #sgh-lines-hover-hero {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#sgh-btn-text {
    transition: opacity 0.2s ease !important;
}

/* CARDS */
.sgh-hero-grid-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 80px !important;
}

.sgh-card {
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.sgh-card:hover {
    transform: translateY(-12px) !important;
}

.sgh-card-accent {
    height: 5px !important;
    background: #f05a5e !important;
}

.sgh-card-body {
    padding: 45px 35px !important;
}

.sgh-card-icon {
    font-size: 40px !important;
    margin-bottom: 25px !important;
}

.sgh-card h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    margin-bottom: 8px !important;
    color: #173e43 !important;
}

.sgh-card-sub {
    color: #3fb0ac !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px !important;
}

.sgh-card p {
    color: #555 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.sgh-card-more {
    color: #173e43 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: 0.3s !important;
}

.sgh-card-more:hover {
    color: #f05a5e !important;
}

/* MEDIA QUERIES - Tablets */
@media (max-width: 991px) {
    .sgh-hero-container {
        padding-top: 100px !important;
    }

    .sgh-hero-h1 { 
        font-size: 32px !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }

    .sgh-hero-p {
        font-size: 17px !important;
        margin-bottom: 30px !important;
    }

    .sgh-hero-btn {
        min-width: unset !important;
        width: 100% !important;
        max-width: 320px !important;
        padding: 18px 20px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }

    .sgh-hero-grid-cards { 
        grid-template-columns: 1fr !important; 
        margin-top: 50px !important;
    }

    .sgh-card-body {
        padding: 30px 25px !important;
    }
}

/* MEDIA QUERIES - Móviles pequeños */
@media (max-width: 375px) {
    .sgh-hero-h1 {
        font-size: 28px !important;
    }
    .sgh-hero-btn {
        font-size: 11px !important;
    }
}
/* custom_css 822732f */
/* --- SEPARADOR SGH CORREGIDO --- */
.sgh-separator {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    margin: 60px auto;       /* El 'auto' es clave para centrar el bloque */
    width: 100%;             /* Ocupa todo el ancho disponible */
    max-width: 100%;         /* Evita que se colapse */
}

.sgh-line {
    height: 1px;
    flex: 1; /* Esto hace que las líneas crezcan equitativamente a los lados */
    background: linear-gradient(to right, transparent, #e1e4e4, transparent);
}

.sgh-dot-triple {
    display: flex;
    justify-content: center; /* Asegura que los puntos dentro de su caja estén centrados */
    gap: 8px;
    margin: 0 30px; /* Espacio entre las líneas y los puntos */
    min-width: 50px; /* Evita que los puntos se amontonen */
}

.sgh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0; /* Evita que los puntos se deformen en móviles */
}

/* Colores SGH */
.dot-coral { background-color: #f05a5e; }
.dot-gold  { background-color: #f89b21; }
.dot-turq  { background-color: #3fb0ac; }
/* custom_css fbe72c7 */
/* --- TRUST WRAPPER --- */
.sgh-trust-section {
    padding: 100px 0 !important;
    background-color: #fcfcfc !important; /* Gris casi blanco premium */
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #eeeeee;
}

.sgh-trust-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100%;
}

.sgh-trust-header {
    text-align: center;
    margin-bottom: 70px;
}

/* --- TÍTULOS --- */
.sgh-pre-title {
    display: block !important;
    color: #333333 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
}

.sgh-trust-main-title {
    font-family: 'Playfair Display', serif !important;
    color: #000000 !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 850px;
    margin: 0 auto !important;
}

/* --- CÁPSULAS / GRID --- */
.sgh-trust-capsule {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    align-items: start;
}

.sgh-trust-item {
    background: #ffffff !important;
    padding: 35px 25px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #f0f0f0 !important;
    height: 100%;
    text-align: left;
}

.sgh-trust-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07) !important;
    border-color: #3fb0ac !important; /* Verde agua sutil */
}

/* --- ICONO E INFO --- */
.sgh-trust-icon {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    display: block;
}

.sgh-trust-text h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.25rem !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.sgh-trust-text p {
    font-family: 'Inter', sans-serif !important;
    color: #666666 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .sgh-trust-capsule {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .sgh-trust-section {
        padding: 70px 0 !important;
    }
}

@media (max-width: 600px) {
    .sgh-trust-capsule {
        grid-template-columns: 1fr !important;
    }

    .sgh-trust-main-title {
        font-size: 1.6rem !important;
    }

    .sgh-pre-title {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }

    .sgh-trust-item {
        padding: 30px 20px !important;
    }
}
/* custom_css a0e7bae */
/* --- CHALLENGES SECTION WRAPPER --- */
.sgh-challenges-section {
    padding: 100px 0 !important;
    background-color: #f4f7f6 !important; /* Gris verdoso muy sutil */
    font-family: 'Inter', sans-serif !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.sgh-challenges-container {
    max-width: 1000px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

/* --- HEADER --- */
.sgh-challenges-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.sgh-challenges-main-title {
    font-family: 'Playfair Display', serif !important;
    color: #000000 !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
}

.sgh-challenges-subtitle {
    font-family: 'Inter', sans-serif !important;
    color: #3fb0ac !important; /* Verde corporativo */
    font-size: 1.2rem !important;
    font-weight: 500 !important;
}

/* --- LIST ITEMS --- */
.sgh-challenges-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 50px !important;
}

.sgh-challenge-item {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease !important;
    border-left: 5px solid #f37021 !important; /* Naranja de acento para marcar el "problema" */
}

.sgh-challenge-item:hover {
    transform: translateX(10px) !important;
}

.sgh-challenge-icon {
    font-size: 2rem !important;
    margin-right: 25px !important;
    min-width: 50px !important;
    text-align: center !important;
}

.sgh-challenge-content h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.3rem !important;
    color: #1a1a1a !important;
    margin-bottom: 5px !important;
    font-weight: 700 !important;
}

.sgh-challenge-content p {
    font-family: 'Inter', sans-serif !important;
    color: #555555 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* --- CTA BUTTON --- */
.sgh-challenges-cta {
    text-align: center !important;
}

.sgh-btn-accent {
    display: inline-block !important;
    background-color: #3fb0ac !important;
    color: #ffffff !important;
    padding: 18px 40px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.sgh-btn-accent:hover {
    background-color: #2d827f !important;
    box-shadow: 0 10px 20px rgba(63, 176, 172, 0.3) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .sgh-challenge-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 25px !important;
    }

    .sgh-challenge-icon {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }

    .sgh-challenges-main-title {
        font-size: 1.6rem !important;
    }

    .sgh-challenges-subtitle {
        font-size: 1rem !important;
    }
}
/* custom_css 1a7e21d */
/* --- SECTION WRAPPER --- */
.sgh-safe-container {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%) !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.sgh-method-inner {
    max-width: 1200px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

/* --- HEADER / TITLES --- */
.sgh-method-header {
    text-align: center !important;
    margin-bottom: 70px !important;
}

.sgh-pre-title {
    display: block !important;
    color: #333333 !important;
    font-family: sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
}

.sgh-method-title {
    font-family: 'Playfair Display', serif !important;
    color: #000000 !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* --- GRID SYSTEM --- */
.sgh-method-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

/* --- STEP CARDS --- */
.sgh-step-card {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 4px !important;
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: flex-start !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.sgh-step-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: #3fb0ac !important; /* Acento verde agua */
}

.sgh-step-number {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem !important;
    color: #3fb0ac !important; /* Color corporativo forzado */
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-right: 25px !important;
    opacity: 0.8 !important;
}

.sgh-step-body h3 {
    font-family: 'Playfair Display', serif !important;
    color: #000000 !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.sgh-step-body p {
    font-family: 'Inter', sans-serif !important;
    color: #555555 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .sgh-method-grid {
        grid-template-columns: 1fr !important;
    }
    
    .sgh-method-title {
        font-size: 2rem !important;
    }

    .sgh-safe-container {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    .sgh-step-card {
        flex-direction: column !important;
        padding: 30px !important;
    }

    .sgh-step-number {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        font-size: 2.2rem !important;
    }

    .sgh-pre-title {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }

    .sgh-step-body h3 {
        font-size: 1.2rem !important;
    }

    .sgh-step-body p {
        font-size: 0.95rem !important;
    }
}
/* Widget 709a159 */

/* Se ha eliminado el bloque .sgh-user-initials para simplificar el diseño */

.sgh-testimonial-user {
    display: flex !important;
    align-items: center !important;
    margin-top: 25px !important;
    padding-left: 5px !important;
}

.sgh-testimonials-container {
    padding: 80px 20px !important;
    background-color: #f9f9f9 !important;
}
.sgh-testimonials-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
}
.sgh-testimonials-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}
.sgh-pre-title {
    color: #3fb0ac !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
}
.sgh-testimonials-main-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px !important;
    color: #173e43 !important;
    margin-top: 10px !important;
}
.sgh-testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
}
.sgh-testimonial-card {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    position: relative !important;
}
.sgh-quote-icon {
    font-size: 50px !important;
    color: rgba(63, 176, 172, 0.2) !important;
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    line-height: 1 !important;
}
.sgh-testimonial-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}
.sgh-user-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #173e43 !important;
    margin: 0 !important;
}
.sgh-user-role {
    font-size: 13px !important;
    color: #3fb0ac !important;
}

/* custom_css 709a159 */
/* --- TESTIMONIALS WRAPPER --- */
.sgh-testimonials-container {
    padding: 120px 0 !important;
    background-color: #f8f9fa !important; /* Gris neutro muy claro */
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif;
}

.sgh-testimonials-inner {
    max-width: 1200px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

/* --- HEADER / TITLES --- */
.sgh-testimonials-header {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.sgh-pre-title {
    display: block !important;
    color: #333333 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
}

.sgh-testimonials-main-title {
    font-family: 'Playfair Display', serif !important;
    color: #000000 !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* --- GRID SYSTEM --- */
.sgh-testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

/* --- TESTIMONIAL CARDS --- */
.sgh-testimonial-card {
    background: #ffffff !important;
    padding: 50px 40px !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.sgh-testimonial-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
    border-color: #3fb0ac !important; /* Acento verde agua */
}

.sgh-quote-icon {
    font-family: 'Playfair Display', serif !important;
    font-size: 5rem !important;
    color: #3fb0ac !important;
    height: 40px !important;
    line-height: 1 !important;
    margin-bottom: 20px !important;
    opacity: 0.3 !important;
}

.sgh-testimonial-text {
    font-family: 'Inter', sans-serif !important;
    color: #555555 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    font-style: italic !important;
    margin-bottom: 30px !important;
    flex-grow: 1 !important;
}

/* --- USER INFO --- */
.sgh-testimonial-user {
    display: flex !important;
    align-items: center !important;
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 25px !important;
}

.sgh-user-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
    margin-right: 15px !important;
    filter: grayscale(100%) !important;
    transition: filter 0.3s ease !important;
}

.sgh-testimonial-card:hover .sgh-user-avatar {
    filter: grayscale(0%) !important;
}

.sgh-user-name {
    font-family: 'Inter', sans-serif !important;
    color: #000000 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
}

.sgh-user-role {
    display: block !important;
    color: #3fb0ac !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .sgh-testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .sgh-testimonials-container {
        padding: 80px 0 !important;
    }

    .sgh-testimonial-card {
        padding: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    .sgh-testimonials-main-title {
        font-size: 1.8rem !important;
    }

    .sgh-pre-title {
        font-size: 0.75rem !important;
    }
}
/* custom_css 77cdd25 */
/* --- CTA WRAPPER --- */
.sgh-cta-container {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #0a2321 0%, #2d827f 100%) !important; /* Fondo corporativo premium */
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif;
}

.sgh-cta-inner {
    max-width: 850px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

/* --- TITLES --- */
.sgh-cta-pre-title {
    display: block !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
    opacity: 0.9 !important;
}

.sgh-cta-main-title {
    font-family: 'Playfair Display', serif !important;
    color: #ffffff !important;
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}

/* --- DESCRIPTION --- */
.sgh-cta-description p {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 45px !important;
    opacity: 0.95 !important;
}

/* --- BUTTON --- */
.sgh-cta-button {
    display: inline-block !important;
    background-color: #ffffff !important; /* Contraste blanco */
    color: #3fb0ac !important; /* Texto en color corporativo */
    padding: 20px 50px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    border: 2px solid #ffffff !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.sgh-cta-button:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

/* --- FOOTER INFO --- */
.sgh-cta-footer-info {
    margin-top: 50px !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;
    padding-top: 30px !important;
}

.sgh-cta-info-item {
    display: inline-block !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    margin: 0 20px 10px 20px !important;
    font-size: 1rem !important;
}

.sgh-cta-icon {
    margin-right: 8px !important;
}

.sgh-cta-privacy {
    display: block !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    margin-top: 15px !important;
    opacity: 0.7 !important;
    font-style: italic !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .sgh-cta-container {
        padding: 80px 0 !important;
    }
    
    .sgh-cta-description p {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 768px) {
    .sgh-cta-main-title {
        font-size: 1.8rem !important;
    }

    .sgh-cta-button {
        width: 100% !important;
        padding: 18px 20px !important;
        text-align: center !important;
    }

    .sgh-cta-info-item {
        display: block !important;
        margin: 10px 0 !important;
    }
}
/* Widget 407b606 */

    /* --- DISEÑO BOUTIQUE --- */
    .sgh-back-to-top {
        position: fixed;
        bottom: 50px;
        right: 50px;
        width: 55px;
        height: 55px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.8);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .sgh-back-to-top.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* El círculo de progreso (Border) */
    .sgh-progress-circle {
        position: absolute;
        top: 0;
        left: 0;
    }

    .sgh-progress-circle path {
        fill: none;
        stroke: #f05a5e; /* Tu color Bronce */
        stroke-width: 2;
        box-sizing: border-box;
        transition: all 0.2s linear;
        /* El progreso se maneja vía JS */
    }

    /* Icono central */
    .sgh-arrow-icon {
        color: #f05a5e;
        width: 20px;
        height: 20px;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* --- EFECTO HOVER PREMIUM --- */
    .sgh-back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
    }

    .sgh-back-to-top:hover .sgh-arrow-icon {
        transform: translateY(-3px);
        color: #1a1a1a;
    }

    .sgh-back-to-top::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #b08d57;
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: -1;
    }

    .sgh-back-to-top:hover::before {
        transform: scale(1);
    }

    /* Fondo del círculo muy tenue para dar profundidad */
    .sgh-back-to-top {
        background: rgba(26, 26, 26, 0.05);
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }


/* === Override ancho completo === */
:root{--container-max-width:100%!important;--container-width:100%!important}
.e-con,.e-con-boxed,.e-con-inner{max-width:100%!important;--container-max-width:100%!important}
.elementor-element,.elementor-widget-container{width:100%!important}
body.home #content,main#content{margin-top:0!important}
