a:hover { color: var(--secundario); } ol li { margin-left: 3em; list-style: decimal; } blockquote { position: relative; padding: 2.5rem 2rem; margin: 2rem 0; background: linear-gradient(135deg, var(--principal), var(--complemento)); color: white; box-shadow: var(--shadow); a{color: var(--secundario);} } blockquote::before { content: '"'; position: absolute; top: -0.5rem; left: 1rem; font-family: var(--fuenteTitulos); font-size: 6rem; line-height: 1; color: var(--accion); opacity: 0.3; } blockquote p { position: relative; font-family: var(--fuenteTitulos); font-size: clamp(1.25rem, 1rem + 0.5vw, 1.75rem); line-height: 1.4; margin-bottom: 1rem; } blockquote small { display: block; color: var(--accion); font-family: var(--fuenteTexto); font-size: 1rem; font-weight: 700; margin-top: 1rem; text-align: right; } blockquote .boton { margin-top: 1.5rem; background-color: var(--accion); color: var(--principal); margin: 1em auto 0; } blockquote .boton:hover { background-color: var(--secundario); color: white; } table { width: 100%; margin: 2em 0 4em; } table tr { border-bottom: 2px dotted var(--gris1); display: flex; padding: 1.2em; flex-wrap: wrap; gap: 1em; width: 100%; } table tr:nth-child(even) { background-color: var(--gris1); } table th { font-weight: 900; } table td, table th { flex: 1 0 200px; } hr { border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc); } .two_columns { display: flex; flex-wrap: wrap; gap: 3em; justify-content: space-around; height: -webkit-min-content; height: -moz-min-content; height: min-content; & > div, figure { flex: 1 0 400px; max-width: 100%; } img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: center right; object-position: center right; } .two_columns-image { line-height: 0; } } .two_columns_left { flex-direction: row-reverse; } .three_columns { display: flex; flex-wrap: wrap; gap: 1em; justify-content: center; align-items: flex-start; margin-bottom: 4em; & > div { position: relative; width: min(100%, 276px); text-align: center; display: grid; place-items: center; border-radius: var(--radius-cards); overflow: hidden; img { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); } img:hover { transform: scale(1.015); } h4 { font-size: 24px; max-width: 296px; margin: 0; } } } .icons { max-width: 180px; } .footer { background-color: #002b4d; color: white; padding: 2rem 1rem; font-family: Arial, sans-serif; } .footer-content { width: min(100%, 1440px); margin: 0 auto; display: flex; gap: 1em; flex-wrap: wrap; justify-content: space-between; align-items: center; } .footer-logo { flex: 1 1 200px; margin-bottom: 1rem; } .footer-logo img { max-width: 200px; width: 100%; height: auto; } .footer-section { flex: 1 1 200px; margin: 0 1rem 1rem 0; min-width: 0; /* Permite que las secciones se reduzcan más allá de su contenido */ } .footer-section h3 { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 0.5rem; } .footer-section p { margin: 0.25rem 0; font-size: clamp(0.875rem, 1.5vw, 1rem); color: rgba(255, 255, 255, 0.95); } .social-icons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; } .social-icon { width: clamp(20px, 4vw, 24px); height: clamp(20px, 4vw, 24px); fill: white; } .footer-bottom { margin-top: 2rem; text-align: center; font-size: clamp(0.8rem, 1.5vw, 0.9rem); border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1rem; width: 100%; color: rgba(255, 255, 255, 0.9); a { color: #f0dfc8; font-size: 16px; font-weight: 500; text-decoration: none; } small { color: rgba(255, 255, 255, 0.85); } } .background_full{ background-color: var(--gris1); box-shadow: 0 0 0 100vmax var(--gris1); clip-path: inset(0 -100vmax); } /* ============================================================================ COOKIE BANNER & MODAL STYLES ============================================================================ */ /* Cookie Bubble */ .cookie-bubble { position: fixed; bottom: 20px; left: 20px; background: #fff; border-radius: var(--radius-cards); box-shadow: var(--shadow); padding: 12px 16px; z-index: 9999; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s; border: 1px solid var(--gris1); max-width: 320px; } .cookie-bubble.show { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s; } .cookie-bubble__content { display: flex; flex-direction: column; gap: 10px; } .cookie-bubble__text { display: flex; align-items: center; gap: 8px; } .cookie-bubble__icon { font-size: 16px; flex-shrink: 0; } .cookie-bubble__message { font-size: 13px; color: var(--grisTexto); line-height: 1.4; } .cookie-bubble__actions { display: flex; align-items: center; gap: 12px; } .cookie-bubble__link { font-size: 12px; color: var(--gris2); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 6px 8px; transition: color 0.2s ease; white-space: nowrap; } .cookie-bubble__link:hover { color: var(--grisTexto); } .cookie-bubble__btn { padding: 8px 16px; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; background: var(--accion); color: var(--principal); } .cookie-bubble__btn:hover { background: var(--secundario); color: #fff; transform: translateY(-1px); } /* Ocultar elementos del banner antiguo */ .cookie-banner, .cookie-banner__content, .cookie-banner__text, .cookie-banner__title, .cookie-banner__description, .cookie-banner__link, .cookie-banner__actions { display: none !important; } /* Cookie Modal */ .cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0s linear 0.3s; } .cookie-modal.show { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.3s ease, visibility 0s linear 0s; } .cookie-modal__content { background: #fff; border-radius: var(--radius-cards); max-width: 600px; width: 100%; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); animation: modalSlideIn 0.3s ease; } @keyframes modalSlideIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } } .cookie-modal__header { padding: 1.5rem; border-bottom: 1px solid var(--gris1); display: flex; justify-content: space-between; align-items: center; } .cookie-modal__title { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--principal); } .cookie-modal__close { background: transparent; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--gris2); padding: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; } .cookie-modal__close:hover { background: var(--gris1); color: var(--grisTexto); } .cookie-modal__body { padding: 1.5rem; overflow-y: auto; flex: 1; } .cookie-modal__intro { margin: 0 0 1.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--gris2); } .cookie-category { margin-bottom: 1.5rem; padding: 1rem; background: var(--gris1); border-radius: 8px; border: 1px solid var(--gris1); } .cookie-category__header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; } .cookie-category__info { flex: 1; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; } .cookie-category__title { margin: 0; font-size: 1rem; font-weight: 600; color: var(--principal); } .cookie-category__badge { display: inline-block; padding: 0.25rem 0.75rem; background: var(--accion); color: var(--principal); font-size: 0.75rem; font-weight: 600; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; } .cookie-category__description { margin: 0; font-size: 0.875rem; line-height: 1.6; color: var(--gris2); } /* Toggle Switch */ .cookie-toggle { position: relative; display: inline-block; width: 50px; height: 26px; cursor: pointer; flex-shrink: 0; } .cookie-toggle input { opacity: 0; width: 0; height: 0; } .cookie-toggle__slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--gris1); transition: 0.3s; border-radius: 26px; } .cookie-toggle__slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: 0.3s; border-radius: 50%; } .cookie-toggle input:checked + .cookie-toggle__slider { background-color: var(--secundario); } .cookie-toggle input:checked + .cookie-toggle__slider:before { transform: translateX(24px); } .cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.6; cursor: not-allowed; } .cookie-modal__footer { padding: 1.5rem; border-top: 1px solid var(--gris1); display: flex; gap: 0.75rem; flex-wrap: wrap; } .cookie-modal__btn { flex: 1; min-width: 140px; padding: 10px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: 2px solid var(--accion); } .cookie-modal__btn--primary { background: var(--accion); color: var(--principal); } .cookie-modal__btn--primary:hover { background: var(--secundario); border-color: var(--secundario); color: #fff; } .cookie-modal__btn--secondary { background: transparent; color: var(--principal); border-color: var(--principal); } .cookie-modal__btn--secondary:hover { background: var(--principal); color: #fff; } /* Responsive Design - Burbuja flotante */ @media (max-width: 768px) { .cookie-bubble { bottom: 12px; left: 12px; right: 12px; max-width: none; padding: 10px 14px; } .cookie-bubble__content { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; } .cookie-bubble__text { flex: 1 1 auto; min-width: 0; } .cookie-bubble__message { font-size: 12px; } .cookie-bubble__actions { flex-shrink: 0; gap: 8px; } .cookie-bubble__btn { padding: 6px 12px; font-size: 12px; } .cookie-bubble__link { font-size: 11px; padding: 6px 8px; } /* Modal styles remain the same */ .cookie-modal__content { max-height: 95vh; } .cookie-modal__header, .cookie-modal__body, .cookie-modal__footer { padding: 1rem; } .cookie-modal__footer { flex-direction: column; } .cookie-modal__btn { width: 100%; } .cookie-category__header { gap: 0.75rem; } } @media (max-width: 480px) { .cookie-bubble { bottom: 10px; left: 10px; right: 10px; padding: 8px 12px; border-radius: 10px; } .cookie-bubble__content { flex-direction: column; align-items: stretch; gap: 8px; } .cookie-bubble__text { justify-content: center; } .cookie-bubble__actions { justify-content: center; } .cookie-bubble__message { font-size: 11px; text-align: center; } .cookie-bubble__btn { flex: 1; } .cookie-bubble__link { flex: 1; text-align: center; } } /* Accessibility */ .cookie-modal__close:focus, .cookie-bubble__btn:focus, .cookie-modal__btn:focus, .cookie-toggle input:focus + .cookie-toggle__slider { outline: 2px solid var(--accion); outline-offset: 2px; } /* Reduced Motion */ @media (prefers-reduced-motion: reduce) { .cookie-bubble, .cookie-modal, .cookie-modal__btn, .cookie-toggle__slider, .cookie-toggle__slider:before { transition: none; } @keyframes modalSlideIn { from, to { transform: none; opacity: 1; } } } .text-container-center { display: flex; justify-content: center; align-items: center; text-align: center; height: 100%; color: #fff; .intro small { font-size: 1rem; color: #fff; } .intro h2 { font-size: clamp(2.75rem, 2.3rem + 0.7vw, 3.25rem); } } .text-container-end { position: relative; display: flex; align-items: flex-end; } .service-cards { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); justify-content: center; } .card { background-color: #fefefe; display: grid; padding: 2rem; place-items: center; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s ease-in-out; position: relative; transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); } .card__flow { transform: none; } .card.visible { opacity: 1; transform: translateY(0); } .card-image { aspect-ratio: 16/9; overflow: hidden; } .card-image img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform 0.3s ease; } .card:hover .card-image img { transform: scale(1.05); } .card-content { padding: 1.5rem; } .card h3 { color: var(--principal); margin-bottom: 1rem; font-size: clamp(1.25rem, 1.1rem + 0.3vw, 1.5rem); } .card p { color: var(--grisTexto); margin-bottom: 1.5rem; font-size: clamp(1rem, 0.9rem + 0.2vw, 1.125rem); } .card ul li { font-size: 1rem; color: var(--grey-1); list-style: none; margin-bottom: 1rem; } /* Acordeon */ .accordion { display: grid; gap: 1.5rem; } /* Ocultar los checkboxes */ .accordion-toggle { display: none; } /* Estilo del encabezado */ .accordion-header { background-color: var(--gris1); color: var(--principal); padding: 1.2rem; font-family: var(--fuenteTitulos); font-size: 1.25rem; text-align: left; border: 1px solid var(--gris1); cursor: pointer; transition: all 0.3s ease; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); display: flex; justify-content: space-between; align-items: center; } .accordion-header:hover { background-color: var(--secundario); color: #fff; box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); } .accordion-toggle:checked + .accordion-header { background-color: var(--principal); color: white; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-color: var(--principal); } .accordion-header::after { content: "+"; font-size: 1.5rem; transition: transform 0.3s ease; } .accordion-toggle:checked + .accordion-header::after { content: "-"; transform: rotate(180deg); } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.2rem; background-color: #f9f9f9; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); } .accordion-content p { margin: 1rem 0; color: var(--grisTexto); } /* Mostrar contenido cuando está seleccionado */ .accordion-toggle:checked + .accordion-header + .accordion-content { max-height: 550px; /* Ajusta según el contenido */ padding: 1.2rem; } /* SECCIONES PARALLAX */ .parallax { min-height: -webkit-min-content; min-height: -moz-min-content; min-height: min-content; display: grid; place-items: center; background-attachment: fixed; background-position: center; background-size: cover; h2 { color: #ffffff; } } .parallax_copy, .parallax_copy small, .parallax_copy h2 { color: #ffffff; } .parallax_hilos-tensores { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-hilos-tensores.avif'); } .parallax_neuronox{ background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-hilos-tensores.avif'); } .parallax_kbeauty{ background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/rejuvenecimiento-facial-bogota.avif'); } .parallax_rejuvenecimiento-facial { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/rejuvenecimiento-facial-bogota.avif'); } .parallax_centro-estetico { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/centro-estetico-bogota-colombia.avif'); } .parallax_aumento-labios { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/aumento-labios-bogota-colombia.avif'); } .parallax_toxina-boca { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/aumento-labios-bogota-colombia.avif'); } .parallax_biorevitalizacion-facial { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/biorevitalizacion-facial-colombia.avif'); } .parallax_biorevitalizacion-facial { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/lifting-facial-sin-cirugia.avif'); } .parallax_peeling-quimico { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/peeling-quimico-facial-dr-tatiana-leal.avif'); } .parallax_toxina-entrecejo { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/peeling-quimico-facial-dr-tatiana-leal.avif'); } .parallax_acido-hialuronico { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-acido-hialuronico-bogota.avif'); } .parallax_caida-cabello { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-capilar-bogota.avif'); } .parallax_ojeras { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-ojeras-bogota.avif'); } .parallax_toxina-frente { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-ojeras-bogota.avif'); } .parallax_manchas { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-manchas.avif'); } .parallax_limpieza-facial { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/limpieza-facial-profunda-bogota.avif'); } .parallax_toxina-ojos { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/limpieza-facial-profunda-bogota.avif'); } .parallax_rejuve { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/centro-estetico-rejuvenecimiento.avif'); } .parallax_vitamina-c { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/vitamina-c-facial.avif'); } .parallax_moldeamiento-corporal { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/moldeamiento-corporal-en-bogota.avif'); } .parallax_celulitis { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-celulitis-en-bogota.avif'); } .parallax_gluteos { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/levantamiento-gluteos-sin-cirugia.avif'); } .parallax_detox { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/sueroterapia-detox-en%20-bogota.avif'); } .parallax_tonificacion { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tonificacion-muscular-en-colombia.avif'); } .parallax_depilacion-laser { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/depilacion-laser-permanente.avif'); } .parallax_radiofrecuencia { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/radiofrecuencia-corporal-bogota.avif'); } .parallax_varices { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-varices-en-bogota.avif'); } .parallax_tatuajes { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/eliminacion-tatuajes-laser-centro-estetico.avif'); } .parallax_lipolisis { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/lipolisis-laser-centro-estetico.avif'); } .parallax_aclaramiento { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/aclaramiento-genital-beneficios.avif'); } .parallax_aumento-labios { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/aumento-labios-mayores-ginecologia-estetica.avif'); } .parallax_incontinencia { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/incontinencia-urinaria.avif'); } .parallax_vaginal { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/rejuvenecimiento-vaginal-laser-bogota.avif'); } .parallax_analisis { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/analisis-facial-janus-bogota.avif'); } .parallax_inbody { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/radiofrecuencia-corporal-bogota.avif'); } .parallax_scizer { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/radiofrecuencia-corporal-bogota.avif'); } .parallax_maximus { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/parallax_maximus.avif'); } .parallax_ombligo-triste { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/lipolisis-laser-centro-estetico.avif'); } .parallax_dysport { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/analisis-facial-janus-bogota.avif'); } .parallax_sculptra { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-sculptra-bogota-colombia.avif'); } .parallax_sculptra-gluteos { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-sculptra-gluteos-bogota-colombia.avif'); } .parallax_toxina-botulinica { background-image: linear-gradient(rgba(0, 46, 81, 0.6), rgba(0, 46, 81, 0.6)), url('/img/tratamiento-toxina-botulinica.avif'); } /* overlay */ .section-overlay { background: var(--principal); color: #fff; a{ color: #fff; &:hover{ color: var(--accion); } } h2 { color: #fefefe; } } .three_blocks { display: flex; justify-content: space-around; flex-wrap: wrap; } .block { width: min(max(300px, 80vw), 480px); flex: 1 1 300px; li { margin: 0; list-style: none; &::before { content: "✓"; color: var(--accion); padding-right: 4px; } } } .gallery-video { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; border-radius: var(--radius); } .gallery-video { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; border-radius: var(--radius); } .benefits-option ul li { margin: 0 0 8px; list-style: none; &::before { content: "✓"; color: var(--accion); padding-right: 4px; } } /* Estilos para los videos */ .video-wrapper { position: relative; width: min(100%, 355px); height: 664px; overflow: hidden; cursor: pointer; border-radius: var(--radius); margin-inline: auto; margin-bottom: 1.5rem; background-color: var(--gris1); } .video-play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0.9; } .video-play-button svg { -webkit-filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); } .video-wrapper:hover .video-play-button { transform: translate(-50%, -50%) scale(1.1); } .video-wrapper.playing .video-play-button { opacity: 0; } .gallery-video { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform 0.3s ease; } .video-wrapper:hover .gallery-video { transform: scale(1.05); } /* Loader para los videos */ .video-wrapper::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border: 3px solid var(--principal); border-top-color: transparent; border-radius: 50%; -webkit-animation: spin 1s linear infinite; animation: spin 1s linear infinite; opacity: 0; } .video-wrapper.loading::before { opacity: 1; } @-webkit-keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } } @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } } /* Estilos para destacar el video del medio */ .video-wrapper-featured { width: min(100%, 400px); /* Un poco más ancho */ height: 700px; /* Un poco más alto */ border: 2px solid var(--accion); /* Borde especial */ box-shadow: 0 8px 32px rgba(207, 186, 163, 0.15); /* Sombra elegante */ transform: translateY(-20px); /* Elevación sutil */ } /* Efecto hover mejorado para el video destacado */ .video-wrapper-featured:hover { border-color: var(--principal); box-shadow: 0 12px 48px rgba(207, 186, 163, 0.25); } /* Botón de play más grande para el video destacado */ .video-wrapper-featured .video-play-button svg { width: 64px; height: 64px; -webkit-filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); } /* Overlay especial para el video destacado */ .video-wrapper-featured::after { content: 'Tecnología Premium'; position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg, var(--principal), var(--complemento)); color: white; padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; opacity: 0.9; z-index: 2; } /* Ajuste del contenedor para acomodar el video más grande */ .block { display: flex; flex-direction: column; align-items: center; } /* Aseguramos que el texto se mantenga alineado */ .block h3, .block p { text-align: center; max-width: 90%; } /* Animación suave al cargar */ .video-wrapper-featured { -webkit-animation: fadeInUp 0.6s ease-out; animation: fadeInUp 0.6s ease-out; } @-webkit-keyframes fadeInUp { from { opacity: 0; transform: translateY(0); } to { opacity: 1; transform: translateY(-20px); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(0); } to { opacity: 1; transform: translateY(-20px); } } .contacto-grid{ display: grid; gap: 2em; ul li{ list-style: none; } } /* WhatsApp Button */ .boton-whatsapp { position: fixed; bottom: 8rem; right: 12px; z-index: 100; -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s 6 alternate-reverse both; animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s 6 alternate-reverse both; transition: all .2s ease-in-out; width: -webkit-max-content; width: -moz-max-content; width: max-content; text-decoration: none; } .boton-whatsapp:hover { -webkit-filter: drop-shadow(5px 5px 5px rgba(190, 190, 190, .7)); filter: drop-shadow(5px 5px 5px rgba(190, 190, 190, .7)); transform: scale(1.05); } /* Keyframes for the animation */ @-webkit-keyframes scale-up-center { 0% { transform: scale(1); } 100% { transform: scale(1.1); } } @keyframes scale-up-center { 0% { transform: scale(1); } 100% { transform: scale(1.1); } } /* scroll top */ .boton-up { position: fixed; right: 15px; bottom: 48px; width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; background-color: var(--accion); border-radius: var(--radius); box-shadow: var(--shadow); transition: all 300ms ease-in; z-index: 5; opacity: 0; visibility: hidden; } .boton-up.visible { opacity: 1; visibility: visible; } .boton-up:hover { transform: scale(1.1); } /* Asegurarse de que el icono sea blanco */ .boton-up svg { color: white; } .benefit-features li{ list-style: none; } .reviews-container{ display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; .review-card{ flex: 1 0 400px; max-width: 100%; .stars{ color: var(--accion); } } } .review-platforms{ margin-top: 2em; } /* CTA Buttons */ .cta-buttons { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; } .cta-buttons .boton { text-align: center; } @media (min-width: 768px) { .cta-buttons { flex-direction: row; } } /* Legal page header */ .legal-header { border-bottom: 1px solid var(--gris1); background-color: var(--fondo, #fafaf9); } .legal-header__inner { max-width: 72ch; } .legal-header__tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--principal); border: 1px solid var(--principal); padding: 0.25rem 0.875rem; border-radius: 999px; } .legal-header__desc { color: var(--grisTexto); font-size: clamp(1rem, 0.95rem + 0.15vw, 1.125rem); max-width: 65ch; } .legal-header__meta { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--grisTexto); margin-top: 0; svg { flex-shrink: 0; color: var(--principal); opacity: 0.7; } } .block_section { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto 1fr; grid-template-areas: "header header image-right" "title title image-right" "content content image-right" "image-left knowledge image-right"; .feature-list li{ list-style: none; margin-bottom: 8px; } } .block_section_header { grid-area: header; padding: 6em 2rem 0; } .block_section_title { grid-area: title; padding: 0 2rem; margin: 2rem 0; font-family: var(--fuenteTitulos); letter-spacing: -0.01em; line-height: 1.1; font-weight: 900; } .block_section_content, .block_section_knowledge { line-height: 1.6; } .block_section_content { grid-area: content; padding: 0 2rem 3rem; } .block_section_image_left { grid-area: image-left; } .block_section_knowledge { grid-area: knowledge; a:not(.boton){ color: var(--gris1); &:hover{color: var(--secundario);} } .boton { color: var(--principal); &:hover { color: white; } } } .block_section_image_right { grid-area: image-right; } .block_section_image_left, .block_section_image_right { -o-object-fit: cover; object-fit: cover; min-height: 100%; width: 100%; background-color: var(--gris1); } .block_section_knowledge { background-color: var(--principal); background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 4px), repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 4px); color: #ffffff; padding: 6em 2rem 3rem; li::marker, h2, small{ color: #fefefe; } } .cta { position: relative; width: 100%; height: auto; aspect-ratio: 16 / 9; box-shadow: var(--shadow); } .bloque_doble { display: flex; flex-wrap: wrap; gap: 1em; & div { flex: 1 0 320px; min-height: 450px; } } .block_section_title { font-weight: bold; font-family: var(--fuenteTitulos); } .cta h2{ position: absolute; left: 50%; top: 50%; width: min(100%, 720px); font-weight: 700; text-align: center; font-family: var(--fuenteTexto); text-transform: uppercase; font-size: 3em; transform: translateY(25%); transform: translateX(-50%); color: var(--gris1); } .thanks-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; } .thanks-icon { text-align: center; color: #4CAF50; margin-bottom: 2rem; } .next-steps, .contact-info { margin: 2rem 0; padding: 2rem; border-radius: 0.5rem; background-color: #f8f9fa; } .next-steps ul, .contact-info ul { list-style: none; padding: 0; } .next-steps li, .contact-info li { margin: 0.5rem 0; } .next-steps a:hover { text-decoration: underline; } .contact-info a { color: #2b6cb0; text-decoration: none; } .contact-info a:hover { text-decoration: underline; } @media (max-width: 640px) { .thanks-page { padding: 2rem 1rem; } .next-steps, .contact-info { padding: 1rem; } } .gallery-container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem; padding: 4em 0; align-items: center; } .gallery-item { width: min(100%, 296px); position: relative; aspect-ratio: 3 / 4; li { font-size: 16px; } } .gallery-item-home { flex: 1 0 296px; max-width: 440px; } .gallery-item img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform 0.3s ease; } .gallery-item-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: #002e5194; color: white; text-align: center; font-size: 18px; } .gallery-item:hover img { transform: scale(1.05); } @supports not (aspect-ratio: 1 / 1) { .gallery-item::before { float: left; padding-top: 100%; content: ''; } .gallery-item::after { display: block; content: ''; clear: both; } } .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .gallery-item:hover video { transform: scale(1.05); } .video-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 2rem; color: white; opacity: 0; transition: opacity 0.3s ease; } .gallery-item:hover .video-overlay { opacity: 1; } .specialist-features { list-style: none; padding: 0; margin: 1rem 0; } .specialist-features li { margin: 0; list-style: none; position: relative; } .container { max-width: 1200px; margin: 0 auto; padding: 2rem; background-color: var(--secundario); box-shadow: 0 0 0 100vmax var(--secundario); -webkit-clip-path: inset(0 -100vmax); clip-path: inset(0 -100vmax); } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .counter { position: relative; padding: 2rem; height: clamp(100px, 20vw, 200px); display: flex; align-items: center; justify-content: center; } .number { font-size: clamp(80px, 10vw, 90px); font-weight: bold; color: #f0f0f0; text-align: center; } .label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(18px, 4vw, 24px); font-weight: bold; color: black; white-space: nowrap; } @media screen and (width <= 1200px) { .block_section { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto auto; grid-template-areas: "header image-right" "title image-right" "content image-right" "image-left knowledge"; } } @media (max-width: 992px) { .padding{ padding: 6em 20px 4em; } .block_section_header { padding: 8em 20px 0; } .block_section_title { padding: 1.5rem 20px; } .block_section_content { padding: 2rem 20px 6em; } } @media (max-width: 800px) { .block_section { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto auto auto; grid-template-areas: "header image-right" "title image-right" "content image-right" "knowledge knowledge" "image-left image-left"; } } @media (max-width: 768px) { .full-width-header { flex-direction: column; } .image-container { min-height: 50dvh; } } @media screen and (width <= 540px) { .two_columns_left { flex-direction: row; } .block_section { grid-template-columns: auto; grid-template-rows: auto auto auto auto auto; grid-template-areas: "header" "title" "image-right" "content" "knowledge" "image-left"; } .block_section_image_left{ background-image: url('/img/tatiana-leal-medicina-laser-480.avif'); } .block_section_image_right{ background-image: url('/img/tatiana-leal-doctora-480.avif'); } .cta h2{ display: none; } }
