/***** COMO TRABAJAMOS *****/
#metodo{
    background: #fff;
}

/***** SERVICIOS *****/
#servicios {
    background: #f5f5f5;
}

/* Header */
.serv-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.serv-titulo-main {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    line-height: 1.2;
}
.serv-titulo-sub {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

/* Cards Lista */
.serv-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
}
.serv-card-titulo {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    color: #111 !important;
    line-height: 1.4 !important;
}
.serv-card-num {
    font-weight: 700;
    margin-right: 4px;
}
.serv-card-detalle {
    font-size: 0.9rem !important;
    color: #444 !important;
    line-height: 1.65 !important;
    margin: 0;
}

/* Grilla Independientes */
.serv-grilla-item {
    padding: 20px 0;
}
.serv-grilla-item:nth-child(n+3) {
    border-top: 1px solid #e0e0e0;
}
.serv-grilla-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.serv-grilla-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}
.serv-grilla-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.serv-grilla-nombre {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
}
@media (max-width: 767px) {
    .serv-grilla-item:nth-child(n+2) {
        border-top: 1px solid #e0e0e0;
    }
    .serv-grilla-item:nth-child(n+3) {
        border-top: none;
    }
}

/**** PROYECTOS *****/
#proyectos{
    background: #fff;
}
#proyectos .btn-more{
    background: #111;
    width: max-content;
    text-align: center;
    display: inline-block;
    padding: 10px 30px;
    color: #fff !important;
    border-radius: 5px;
    cursor: pointer;
}
#proyectos .btn-more:hover{
    background: #333;
}
#proyectos p{
    color: var(--color-negro) !important;
}

/* Cards de proyectos */
#proyectos .single-card-item {
    margin-top: 24px;
}
.proyecto-card {
    height: 100%;
}
.proyecto-card .proyecto-link {
    display: block;
    text-decoration: none;
}
.proyecto-card .proyecto-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
}
.proyecto-card .proyecto-img-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.proyecto-card:hover .proyecto-img-wrap img {
    transform: scale(1.04);
}
.proyecto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.proyecto-card:hover .proyecto-overlay {
    opacity: 1;
}
.proyecto-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    color: #111;
    border-radius: 5px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.proyecto-info h4 {
    color: #fff !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.proyecto-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.proyecto-info ul li {
    color: #fff !important;
    font-size: 12px;
    padding: 2px 0;
}
.proyecto-info ul li::before {
    content: "• ";
}

/**** EQUIPO *****/
#equipo {
    background: #fff;
}
#equipo p {
    color: var(--color-negro) !important;
}

/* Director */
#equipo .equipo-director-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
#equipo .equipo-director-bio h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
.equipo-cargo {
    font-size: 0.88rem;
    color: #888 !important;
    font-weight: 400;
    margin-bottom: 10px;
}
.equipo-bio {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #444 !important;
}
.equipo-linkedin a {
    font-size: 0.88rem;
    color: var(--color-verde) !important;
    font-style: italic;
}

/* Resto del equipo */
#equipo .equipo-resto-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
#equipo .equipo-resto h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Valores */
.equipo-valores-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
}
.equipo-valor-circulo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    color: #333;
    padding: 14px;
    line-height: 1.45;
}
.equipo-valor-conector {
    font-size: 0.65rem;
    color: #aaa;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    #equipo .equipo-director-img,
    #equipo .equipo-resto-img {
        width: 90px !important;
        height: 90px !important;
    }
    .equipo-valor-circulo {
        width: 90px;
        height: 90px;
        font-size: 0.7rem;
    }
    .equipo-valor-conector {
        display: none;
    }
}

/**** PORQUE NOS ELIGEN *****/
#porque {
    background: #f5f5f5;
}

/* Espacio para la foto que sobresale — aplica a TODAS las filas */
#porque .testi-col {
    margin-top: 55px;
    margin-bottom: 10px;
}

/* Card */
.testi-card {
    background: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 60px 24px 28px;
    position: relative;
    height: 100%;
}

/* Foto sobresaliendo arriba */
.testi-foto-wrap {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}
.testi-foto {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* Contenido */
.testi-nombre {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 4px !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
.testi-cargo {
    font-size: 0.82rem;
    color: #888 !important;
    margin-bottom: 14px;
}
.testi-texto {
    font-size: 0.82rem;
    color: #444 !important;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}
.testi-estrellas {
    font-size: 1.1rem;
    color: #111;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.testi-logo-pie {
    height: 26px;
    width: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.75;
}

/**** PARTNERS ****/
#partners .brand-logo img {
    max-height: 50px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
#partners .brand-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/***** CLIENTES *****/
#clientes {
    background: #fff;
}
.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.cliente-logo img {
    max-height: 50px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.cliente-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
/**** FOOTER ****/
#footer {
    background: #efefef;
}
.footer-logo {
    height: auto;
    width: 250px;
}
.footer-icons {
    gap: 10px;
}
.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.3s;
    flex-shrink: 0;
}
.footer-social-icon:hover {
    background: #444;
    color: #fff !important;
}

/**** CONTACTO *****/
#contacto {
    background: #fff;
}
#contacto h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-transform: uppercase;
}
#contacto p, #contacto a {
    color: var(--color-negro);
    font-size: 0.92rem;
}
#contacto img {
    width: 20px;
    vertical-align: middle;
}

/* Inputs con solo línea inferior */
#contacto input,
#contacto textarea {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    width: 100%;
    font-size: 0.9rem;
    color: #111;
    outline: none;
}
#contacto input::placeholder,
#contacto textarea::placeholder {
    color: #aaa;
    font-size: 0.88rem;
}
#contacto input:focus,
#contacto textarea:focus {
    border-bottom-color: #111 !important;
}
#contacto textarea {
    resize: none;
}
#contacto .form-group {
    margin-bottom: 4px !important;
}

/* Datos de contacto (teléfono, dirección) con sangría */
.contacto-datos {
    border-left: 2px solid #e0e0e0;
    padding-left: 16px;
    margin-top: 24px;
}
.contacto-datos p {
    margin-bottom: 8px;
    font-size: 0.92rem;
}

/* Botón negro — sin margin extra arriba */
#contacto .btn,
#contacto .btn-main,
#contacto #boton_contacto {
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    width: 100%;
    padding: 14px !important;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-top: 0 !important;
    transition: background 0.3s;
}
#contacto .btn:hover,
#contacto #boton_contacto:hover {
    background: #333 !important;
}

/**** HEADER / NAV ****/
.main-header,
.main-header.sticky {
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
}
.nav-bg-b .custom-nav .nav-list li a.menu-links,
.main-header.sticky .custom-nav .nav-list li a.menu-links {
    color: #222 !important;
}
.nav-bg-b .custom-nav .nav-list li a.menu-links:hover {
    color: var(--color-verde) !important;
}
.nav-bg-b.main-header .mega-white-logo {
    display: none !important;
}
.nav-bg-b.main-header .mega-darks-logo {
    display: inline-block !important;
}
.nav-bg-b .hc-nav-trigger span,
.nav-bg-b .hc-nav-trigger span::after,
.nav-bg-b .hc-nav-trigger span::before {
    background: #222 !important;
}

/**** OTROS *****/
.hero-section{
    margin-top: 70px;
}
.hero-creative-agenc1, .hero-digital-agency-1{
    height: 88vh !important;
}
.hero-creative-agenc1{
    background: linear-gradient(to right, var(--color-verde), var(--color-turquesa)) !important;
}
.onloadpage{
    background: var(--color-negro);
}
.logo-pre{
    background: transparent; 
    width: 300px;
    text-align: center;
    box-shadow: 0 0 0 0 rgb(0 0 0 / 0);
    animation: pulse 2s infinite;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 8px;
}
.portfolio-page h1, .portfolio-page p{
    color: #000;
}
/*.breadcrumb-area:before, .breadcrumb-areav2:before{
    background: linear-gradient(to right, var(--color-verde), var(--color-turquesa)) !important;
}*/
.main-header.sticky .custom-nav .nav-list li a.menu-links:hover{
    color: var(--color-verde);
}

#footer .logo-footer{
    display: flex;
    align-items: center;
}
.menu-links.activo {
    color: var(--color-verde) !important;
}
.btn-whatsapp-float {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    border-radius: 100%;
    letter-spacing: 2px;
	text-align: center;
    background-color: #25D366;
    padding: 2px;
    position: fixed;
    bottom: 15px;
    right: 60px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
	width: 60px;
	height: 60px;
	line-height: 60px;
}
.btn-whatsapp-float:hover{
	color: #fff;
}
#relacionados{
    background: #000;
    border-bottom: 1px solid #fff;
}
#equipo a{
    color: #fff;
}
@media (max-width:992px){
    #equipo .equipo-director-img,
    #equipo .equipo-resto-img{
        width: 50% !important;
        margin-left: 25% !important;
        display: block;
        margin-top: 30px;
    }
    .hero-section {
        margin-top: 65px;
    }
    #footer{
        padding-bottom: 50px
    }
    .hero-heading-sec, .end-footer-, .footer-link-- {
        text-align: right;
    }
}
#porque .user-info{
    margin: 0 !important;
    text-align: center;
}
#porque .media div:first-child {
    flex-shrink: initial !important;
}
#porque .owl-carousel .owl-stage-outer{
    overflow: hidden !important;
}

#porque .owl-nav.disabled{
    display: block !important;
}
#porque .owl-carousel .owl-nav{
    display: block !important;
    margin-top: -190px !important
}
#porque .owl-carousel .owl-nav button span{
    background: transparent !important;
    color: #222 !important;
    border: 0 !important;
    padding: 10px !important;
    font-size: 50px !important;
}
#porque .owl-carousel .owl-nav .owl-next{
    position: absolute !important;
    right: -50px !important;
}
#porque .owl-carousel .owl-nav .owl-prev{
    left: -50px;
}
#porque .owl-carousel{
    display: grid !important;
}
/**** TÍTULOS DE SECCIÓN - GLOBAL ****/
.text-effect-2 {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    display: block !important;
    padding: 0 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    background-image: none !important;
}
.text-effect-2 p {
    padding: 0 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #111 !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}
/* Centrar solo en secciones que lo necesitan específicamente */
section .text-center .text-effect-2 {
    text-align: center !important;
}

/**** OVERRIDE GLOBAL - TEXTO OSCURO (template base es blanco) ****/
body {
    color: #222 !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #111 !important;
}
p, li, span, a, label, input, textarea {
    color: inherit;
}
/* Links en equipo (estaban en blanco) */
#equipo a {
    color: var(--color-verde) !important;
}
/* Footer - texto oscuro (fondo claro) */
#footer,
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6,
#footer p, #footer li, #footer span {
    color: #222 !important;
}
#footer a {
    color: #222 !important;
}
/* Iconos sociales del footer — mayor especificidad para ganarle a #footer a */
#footer .footer-social-icon,
#footer .footer-social-icon i {
    color: #fff !important;
}

/* Botón ir arriba */
#scrollUp {
    background: #222 !important;
    opacity: 0.7 !important;
    color: #fff !important;
    width: 36px !important;
    height: 36px !important;
    bottom: 15px !important;
    right: 15px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
#scrollUp:hover {
    opacity: 1 !important;
}
.hero-section h1, .hero-section h2, .hero-section h3,
.hero-section p, .hero-section span {
    color: #000 !important;
}

/**** SLIDER / HERO - texto se hereda del admin (no forzar color) ****/
.hero-section .text-effect-2 p {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
