/* =============================
   CONTENEDORES PRINCIPALES
============================= */
.duc-frame-principal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #000;
    font-family: 'Open Sans';
    font-size: 1.1em;
}
.duc-frame-contenido {
    margin-top: 10px;
    max-width: 620px;
    width: 100%;
}
.duc-frame-principal h1 {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 2.2em;
}
.duc-frame-principal h2 {
    font-family: 'Open Sans';
    margin-bottom: 0.2em;
    font-size: 1.6em;
    color: #222;
}
.duc-frame-principal p {
    margin-bottom: 1.2em;
    font-size: 1em;
    color: #666;
    white-space: pre-line;
}
/* =============================
   IMAGEN DESTACADA Y LOGOTIPO
============================= */
.duc-frame-imagen-destacada {
    position: relative;
    width: 100%;
    margin-top: 100px;
}
.duc-frame-imagen-destacada img{
    display: block;
    width: 100%;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.duc-frame-logotipo {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
.duc-frame-logotipo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* Título superpuesto sobre imagen destacada */
.duc-imagen-destacada-h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.53);
    color: #fff;
    text-align: center;
    padding: 0.7em 0;
}
.duc-imagen-destacada-h1 h1 {
    margin: 0;
}
/* Título fijo abajo */
.duc-titulo-imagen {
    position: absolute;
    bottom: 10px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.duc-imagen-destacada-presentacion {
    background-color: #fff;
    padding: 1em;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* =============================
   TARJETAS Y CONTENIDO
============================= */
.duc-tarjeta,
.duc-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.duc-card {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/*===========================================
|          REDES SOCIALES                   |
| Cada botón simula un ícono cuadrado,      |
| con colores específicos por plataforma.   |
============================================*/
.duc-redes-sociales-contacto {
    width: 100%;
    margin-top:1em;
}
.duc-redes-sociales-contacto p{
    text-align:center;
    color:#fff;
}
.duc-redes-sociales-contacto h2{
    text-align:center;
    color:#fff;
    font-family: 'Open Sans';
}
.duc-rsc-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2em;
    margin-bottom: 2em;
}
/*  BOTONES*/
.duc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: transform 0.2s ease;
    padding: 25px;
}
.duc-btn:hover {
    transform: scale(1.1);
    color:#fff;
}
/* Estilos por red */
.duc-btn.facebook   { background-color: #3b5998; }
.duc-btn.instagram  {background-color: #fd2971;/* background-color: #FD1D1D; */}
.duc-btn.x          { background-color: #000000; }
.duc-btn.tiktok     {background-color: #000000;}
.duc-btn.linkedin   { background-color: #0077b5; }
.duc-btn.youtube    { background-color: #ff0000; }
.duc-btn.web        {/* background-color: #777777; *//* background-color: #4A90E2; */background-color: #2C3E50;}
.duc-btn.tel        {
    background-color: #000000;
    color:#FFEB3B;
    box-shadow: 2px 2px 3px 0px #FFEB3B;
}
.duc-btn.celular {
    background-color: #FF6F00; /* Naranja intenso y vibrante */
    color: #fff; /* Blanco para que resalte bien */
}

.duc-btn.wa         { background-color: #25D366; }
.duc-btn.telegram   { background-color: #0088cc; }
.duc-btn.messenger  { background-color: #006AFF; }
.duc-btn.correo     {
    background-color: #FFEB3B;
    color:#000;
    box-shadow: 2px 2px 3px 0px #000;
}
.duc-btn.ubicacion  { background-color: #AF1818; }
.duc-btn:focus,
.duc-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5), 0 0 0 6px rgba(0, 0, 0, 0.2);
    color:white;
}

/*===============
|   SERVICIOS   |
===============*/
.duc-servicios {
    background-color: #ffffff;
    padding: 2em;
    margin: 2em 0;
    max-width: 620px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.duc-servicios h2 {
    font-family: 'Open Sans';
}
/*=======================
|   HORARIO DE ATENCIÓN |
=======================*/
.duc-horario {
    background-color: #ffffff;
    padding: 2em;
    margin: 2em 0;
    max-width: 620px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.duc-horario h2 {
    margin: 0;
}
/*.duc-horario p {
    margin-bottom: 0;
    white-space: pre-line; 
    color: #555;
}*/
/*===================
|   CONTACTO FINAL  |
===================*/
.duc-contacto-final{
    background-color: #ffffff;
    padding: 2em;
    margin: 2em 0;
    max-width: 620px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.duc-linea-contacto {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8em;
    margin: 1em 0;
    font-size: 1.1em;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8em;
}
.duc-linea-contacto:last-child {
    border-bottom: none;
}
.duc-linea-contacto i {
    font-size: 1.2em;
    color: #1a73e8;
    min-width: 20px;
}
.duc-linea-contacto a i {    
    color: inherit;
}
.duc-boton-contacto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    width: 100%;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
/* Teléfono */
.duc-boton-contacto.tel {
    background-color: #111;
    color: #ffeb3b;
}
.duc-boton-contacto.celular{    
    background-color: #FF6F00; /* Naranja intenso y vibrante */
    color: #fff; /* Blanco para que resalte bien */
}
.duc-boton-contacto.tel:hover {
    background-color: #000;
}
/* WhatsApp */
.duc-boton-contacto.wa {
    background-color: #25D366;
    color: white;
}
.duc-boton-contacto.wa:hover {
    background-color: #1ebe57;
}
/* Telegram */
.duc-boton-contacto.telegram {
    background-color: #2AABEE;
    color: white;
}
.duc-boton-contacto.telegram:hover {
    background-color: #1e96d1;
}
/* Messenger */
.duc-boton-contacto.messenger {
    background-color: #0084FF;
    color: white;
}
.duc-boton-contacto.messenger:hover {
    background-color: #006fe0;
}
/* Correo */
.duc-boton-contacto.correo {
    background-color: #ffeb3b;
    color: #111;
}
.duc-boton-contacto.correo:hover {
    background-color: #fdd835;
}
/* Guardar Contacto */
.duc-boton-contacto.guardar-contacto {
    background-color: #0573E1;
    color: white;
}
.duc-boton-contacto.guardar-contacto:hover {
    background-color: #045bb5;
}
.duc-boton-contacto i {
    font-size: 1.2em;
}
.duc-label {
    color: #444;
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}
.duc-valor {
    font-weight: 600;
    color: #1a73e8;
    cursor: pointer;
    transition: color 0.2s;
}

.duc-valor:hover {
    color: #0d47a1;
    text-decoration: underline;
}
.duc-mt-espaciado {
    margin-top: 2em;
}
/*==================================
|   UBICACIÓN O ÁREA DE SERVICIO   |
==================================*/
.duc-ubicacion {
    background-color: #ffffff;
    padding: 2em;
    margin: 2em 0;
    max-width: 620px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.duc-ubicacion iframe {
    border-radius: 10px;
    margin: 1em 0;
    width: 100%;
    height: 300px;
}
.duc-boton-contacto.direccion {
    background-color: #0573E1;
    color: white;
}
.duc-boton-contacto.direccion:hover {
    background-color: #045abf;
}
.duc-boton-contacto.direccion {
    background-color: #AF1818 !important;
    color: white !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
}
.duc-boton-contacto.direccion:hover {
    background-color: #8e1313 !important;
    color: white !important;
}
/*=======================
|   BOTONES COMPARTIR   |
=======================*/
.duc-botones-compartir {
    margin: 4em 0 2em 0;
    text-align: center;
}
.duc-botones-compartir h2 {
    font-size: 2em;
    margin-bottom: 1em;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
}
.duc-botones-compartir .duc-rsc-flex {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.duc-botones-compartir .duc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: white;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    text-decoration: none;
    padding: 20px;
}
.duc-botones-compartir .duc-btn.facebook {
    background-color: #3b5998;
}
.duc-botones-compartir .duc-btn.facebook:hover {
    background-color: #2d4373;
}
.duc-botones-compartir .duc-btn.twitter {
    background-color: #1da1f2;
}
.duc-botones-compartir .duc-btn.twitter:hover {
    background-color: #0d95e8;
}
.duc-botones-compartir .duc-btn.linkedin {
    background-color: #0077b5;
}
.duc-botones-compartir .duc-btn.linkedin:hover {
    background-color: #005983;
}
.duc-botones-compartir .duc-btn.wa {
    background-color: #25d366;
}
.duc-botones-compartir .duc-btn.wa:hover {
    background-color: #1ebe57;
}
.duc-botones-compartir .duc-btn.x {
    background-color: #000000;
}
.duc-botones-compartir .duc-btn.x:hover {
    background-color: #333333;
}
.duc-botones-compartir .duc-btn.telegram {
    background-color: #0088cc;
}
.duc-botones-compartir .duc-btn.telegram:hover {
    background-color: #006999;
}
.duc-botones-compartir .duc-btn.pinterest {
    background-color: #bd081c;
}
.duc-botones-compartir .duc-btn.pinterest:hover {
    background-color: #8c0616;
}
.duc-botones-compartir .duc-btn.email {
    background-color: #FFEB3B;
    color: #000;
    box-shadow: 2px 2px 3px 0px #000;
}
.duc-botones-compartir .duc-btn.email:hover {
    background-color: #fdd835;
}
/* ==========================
|   COPIAR AL PORTAPAPELES  |
===========================*/
.duc-copiar-clipboard {
    position: relative;
    cursor: pointer;
}
.duc-copiar-clipboard::after {
    content: 'Copiado';
    position: absolute;
    top: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.duc-copiar-clipboard.copiado::after {
    opacity: 1;
}
/* =======================
|   CONTADOR DE VISITAS  |
========================*/
.duc-contador-visitas-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}
.duc-contador-visitas {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    background-color: #f4f4f4;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 6px;
}
.duc-contador-visitas i {
    color: #d63384;
    font-size: 1.1rem;
}
.duc-contador-visitas .duc-visitas-texto {
    font-weight: 500;
}

/*COPIAR AL PORTAPAPELES*/
.mensaje-copiado {
    display: none;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
}

.duc-copiar-clipboard {
    position: relative;
    cursor: pointer;
}


/* =============================
   OCULTAR ELEMENTOS DEL TEMA
============================= */
header,
.nv-big-title {
    display: none;
}
.container {
    max-width: 100% !important;
    padding: 0 !important;
}


/* =========
|   FOOTER  |
===========*/
#daleun-footer {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}
#daleun-footer .daleun-logo {
    height: 50px;
}
#daleun-footer .daleun-link {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    font-family: 'Open Sans';
    text-decoration: underline;
}



/* =============================
|   MEDIA QUERIES (Responsivo)  |
===============================*/
@media (max-width: 480px) {
    .duc-frame-logotipo img {
        width: 120px;
        height: 120px;
    }
    .duc-imagen-destacada-h1 h1 {
        font-size: 20px;
        padding: 10px;
    }
    .duc-titulo-imagen {
        font-size: 18px;
        padding: 6px 0;
    }
    .duc-botones-contacto a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        margin: 0 4px;
    }
    .duc-card,
    .duc-tarjeta {
        padding: 16px;
    }
    .duc-boton-contacto {
        width: 100%;
        text-align: center;
    }
    /*NUEOV*/
    .duc-frame-contenido {
        padding: 0 15px;
    }
    .duc-frame-imagen-destacada {
        margin-top: 60px;
    }
    .duc-frame-logotipo {
        top: -60px;
    }
    .duc-frame-logotipo img {
        width: 100px;
        height: 100px;
    }
    .duc-imagen-destacada-h1 {
        padding: 0.5em 0;
    }
    .duc-imagen-destacada-h1 h1 {
        font-size: 1.2em;
    }
    .duc-titulo-imagen {
        font-size: 1em;
        padding: 0.5em;
    }
    .duc-card,
    .duc-tarjeta,
    .duc-servicios,
    .duc-horario,
    .duc-contacto-final,
    .duc-ubicacion {
        padding: 1em;
        margin: 1em 0;
    }
    .duc-boton-contacto {
        font-size: 1em;
        padding: 0.8em;
    }
    .duc-rsc-flex {
        gap: 10px;
        margin: 1em 0;
    }
    .duc-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 15px;
    }
    .duc-botones-compartir .duc-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 10px;
    }
    .duc-contador-visitas {
        font-size: 0.9em;
    }
    /*.duc-linea-contacto {
        flex-direction: column;
        align-items: flex-start;
    }*/
    .duc-boton-contacto i {
        font-size: 1em;
    }
    .duc-lista-guardar-contacto li {
        font-size: 0.9em;
        margin: 0.5em 0;
    }
}