:root {
    --almagro-red: #E52713;
    --almagro-footer: #2B3130;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    color: #000000;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ACACAC;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #ACACAC;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #ACACAC;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #ACACAC;
}

.cta {
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--almagro-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 282px;
    height: 44px;
    max-width: 100%;
    border: 2px solid var(--almagro-red);
    border-radius: 50px;
    transition: all .5s ease;
}

.cta:hover {
    background-color: #fff;
    color: var(--almagro-red);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.header .header_inner {
    width: inherit;
    height: inherit;
}
.header .topbar {
    background-color: #fff;
    height: 50px;
    padding: 12px 0;
    pointer-events: all;
}
.header .topbar .topbar_row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.header .topbar .topbar_row .col-header {
    flex-basis: 0;
    flex-grow: 0.333;
    max-width: 100%;
    width: 100%;
    align-self: center;
}
.header .topbar .topbar_row .col-header.col-header_left {
    flex-grow: 0.3;
}
.header .topbar .topbar_row .col-header.col-header_center {
    flex-grow: 0.5;
}
.header .topbar .topbar_row .col-header.col-header_right {
    flex-grow: 0.3;
}
.header .topbar .topbar_row .col-header.col-header_center p {
    font-size: 0.875rem;
    line-height: 1;
    color: #4D4D4D;
    text-align: center;
}
.header .topbar .topbar_row .col-header .topbar_nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .topbar .topbar_row .col-header .topbar_nav a {
    color: #4D4D4D;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 28px;
    text-align: center;
    border-right: 1px solid #A7A7A7;
    border-left: 1px solid #A7A7A7;
}
.header .topbar .topbar_row .col-header .topbar_nav a:last-of-type {
    color: var(--almagro-red);
    border-left: 0;
}
.header .navegacion {
    position: relative;
    /*height: calc(100vh - 50px);*/
    height: 100vh;
}
.header .navegacion .navegacion_main {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 39px 0;
    transition: all .3s ease-in-out;
    pointer-events: all;
}
.header .navegacion .navegacion_main .header_nav {
    /*display: flex;
    flex-wrap: nowrap;
    align-items: stretch;*/ /* Ajuste 202510161800 */
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.header .navegacion .navegacion_main .header_nav .col-header {
    /*flex-basis: 0;
    flex-grow: 0.5;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
    align-self: center;*/ /* Ajuste 202510161800 */
    flex: 0 1 auto;   /* shrink permitido, sin crecer forzado */
    width: auto;
    max-width: none;
    min-height: 1px;
    align-self: center;
    min-width: 0;     /* evita desbordes por contenido largo */
}

/* Izquierda: que se “estire” y consuma el espacio sobrante */
.header .navegacion .navegacion_main .header_nav .col-header_left {
  flex: 1 1 auto;
}

/* Derecha: ancho según contenido y pegada a la derecha */
.header .navegacion .navegacion_main .header_nav .col-header_right {
  flex: 0 0 auto;   /* tamaño al contenido */
  margin-left: auto;/* empuja esta col a la derecha */
  display: flex;    /* para que justify-content funcione */
  justify-content: flex-end;
  align-items: center;
}

/*.header .navegacion .navegacion_main .header_nav .col-header.col-header_left {}
.header .navegacion .navegacion_main .header_nav .col-header.col-header_right {
    justify-content: flex-end;
}*/
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links {
    display: flex;
    align-items: center;
}
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li {
    margin: 0 10px;
}
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 400;
    transition: all .5s ease;
}
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a:hover {
    color: var(--almagro-red);
}
.header .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a.active {
    font-weight: 700;
}
.btn_menu {
    display: block;
    width: 47px;
    height: 46px;
    background-image: url('../../assets/img/menu_hamburger.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    margin-left: 15px;
}
.btn_menu.menu-active {
    background-image: url('../../assets/img/menu_exit.svg');
}
.header .navegacion .header_sidebar {
    background-color: #E9E9E9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: inherit;
    opacity: 0;
    visibility: hidden;
}
.header .navegacion .header_sidebar .header_sidebar_img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}
.header .navegacion .header_sidebar .sidebar_container {
    padding: 170px 143px 115px 90px;
    text-align: right;
    overflow-y: scroll;
}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav {
    max-width: 560px;
}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav ul {
    margin-bottom: 24px;
}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav ul li {}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav h6 {
    color: #4D4D4D;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav a {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
}
.header .navegacion .header_sidebar .sidebar_container .sidebar_nav a:hover {
    color: var(--almagro-red);
}

/* Header Active */
.header.header-active {
    pointer-events: all;
    position: fixed;
}
.header.header-active .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a {
    color: #4D4D4D;
}
.header.header-active .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a:hover {
    color: var(--almagro-red);
}
.header.header-active .navegacion .header_sidebar {
    opacity: 1;
    visibility: visible;
}

/* Header Sticky */
.header.header-sticky {
    position: fixed;
}
.header.header-sticky .topbar {
    display: none;
}
.header.header-sticky .navegacion .navegacion_main {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0px 60px 100px -6px rgba(37, 45, 61, 0.09);
}
.header.header-sticky .navegacion .navegacion_main .header_nav .header-logo {
    width: 51px;
}
.header.header-sticky .navegacion .navegacion_main .header_nav .col-header .header_nav_links .nav_links li a {
    color: #4D4D4D;
    font-size: 1rem;
}
.header.header-sticky .btn_menu {
    background-image: url("../../assets/img/menu_hamburger_gris.svg");
}

.header.header-sticky.header-active .navegacion {
    height: 100vh;
}
.header.header-sticky.header-active .btn_menu {
    background-image: url("../../assets/img/menu_exit.svg");
}

/* Hero Section */
.carousel_imagen {
	width: 100%;
	object-fit: cover;
    height: 700px;
	margin: 0 auto;
}

.carousel-caption {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 200px;
    padding-right: 12px;
    padding-bottom: 190px;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {}
.hero-content h2 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 17px;
}
.hero-content .titulo-top {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}
.hero-content .titulo-bottom {
    font-size: 2.188rem;
    line-height: 1;
}
.hero-content .titulo-bottom .semiBold {
    font-weight: 600;
}
.hero-content .cta {
    width: 160px;
    margin-top: 110px;
}

.carousel-indicators {
    gap: 12px;
    margin-bottom: 137px;
}

.carousel-indicators button[data-bs-target] {
    padding: 0;
    margin: 0;
    border: 0;
    width: 9px;
    height: 9px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
}

.carousel-indicators button[data-bs-target].active {
    background: #fff;
}

.seccion-hero .carousel-item.item_03 .carousel-caption {
    justify-content: flex-end;
}

/* Filtro */
.seccion-filtro {
    padding-right: 30px;
    padding-left: 30px;
}

.box-filtro {
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
    box-shadow: 0px 60px 100px -6px rgba(37, 45, 61, 0.09);
    border-radius: 12px;
    position: relative;
    top: -110px;
    z-index: 1;
    padding: 50px 64px;
    background-color: #fff;
    text-align: center;
}
.box-filtro .filtro-content {
    margin-bottom: 38px;
}
.box-filtro .filtro-content h3 {
    color: #4D4D4D;
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 12px;
}
.box-filtro .filtro-content p {
    color: #4D4D4D;
    font-size: 1.313rem;
    line-height: 1.563rem;
}

/*.grid-filtros {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 195px;
    gap: 18px;
}*/

/* Móvil por defecto: 1 columna */
.seccion-filtro .grid-filtros {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

/* ≥ 992px */
@media (min-width: 992px) {
  .seccion-filtro .grid-filtros {
    gap: 18px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ≥ 1200px */
@media (min-width: 1200px) {
  .seccion-filtro .grid-filtros {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.select-filtro {
    display: block;
    width: 100%;
    border: 1px solid #CDD6DE;
    background-color: #F9F9F9;
    color: #4D4D4D;
    font-size: 1rem;
    line-height: 2rem;
    /*font-weight: 700;*/
    padding: 6px 40px 6px 24px;
    border-radius: 8px;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn.btn-filtro {
    font-size: 1.125rem;
    background: var(--almagro-red);
    color: white;
    border: none;
    padding: 9px 30px;
    border: 2px solid var(--almagro-red);
    border-radius: 25px;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    height: 46px;
    transition: all .5s ease;
}

.btn.btn-filtro:hover {
    background-color: #fff;
    color: var(--almagro-red);
}

/* Intro */
.box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #F9F9F9;
    align-items: center;
}
.box-grid .box-grid_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.box-grid .box-grid_content {
    padding: 40px 70px 40px 110px;
    font-size: 1.375rem;
    line-height: 1.2;
    color: #4D4D4D;
}
.box-grid .box-grid_content h3 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4D4D4D;
}
.box-grid .box-grid_content h3 .naranja {
    color: var(--almagro-red);
}
.box-grid .box-grid_content .subtitle {
    font-weight: 800;
    font-size: 0.938rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.box-grid .box-grid_content .subtitle .verde {
    color: #73B694;
}
.box-grid .box-grid_content .cta {
    margin-top: 24px;
}

/* Calidad */
.carrusel_item {
    text-align: center;
}
.carrusel_item .carrusel_imagen {
    width: 100%;
    height: 567px;
    object-fit: cover;
}
.carrusel_item .box_imagen {
    position: relative;
    margin-bottom: 40px;
}
.carrusel_item .box_imagen .box_flotante {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.813rem;
    line-height: 2.375rem;
    font-weight: 600;
}
.carrusel_item p {
    font-size: 1.125rem;
    line-height: 1.563rem;
    color: #4D4D4D;
    max-width: 1140px;
    margin: auto;
    margin-bottom: 24px;
}
.carrusel_item p .semiBold {
    font-weight: 600;
}
.carrusel_item .titulo {
    font-size: 1.25rem;
    font-weight: 500;
}

.control_carrusel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.control_carrusel li {
    cursor: pointer;
}

.control_carrusel .prev::before,
.control_carrusel .next::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml;utf8,<svg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M23.4776 18L16.1703 10.6927L14.352 12.511L19.841 18L14.352 23.489L16.1703 25.3073L23.4776 18ZM36 17.9965C36 20.4638 35.5315 22.7914 34.5946 24.9795C33.6577 27.1675 32.3685 29.0825 30.7271 30.7246C29.0857 32.3667 27.1714 33.6565 24.9844 34.5941C22.7974 35.5314 20.4704 36 18.0035 36C15.5032 36 13.1674 35.5315 10.9958 34.5946C8.82429 33.6577 6.91747 32.3685 5.27538 30.7271C3.6333 29.0857 2.34346 27.1714 1.40588 24.9844C0.468626 22.7974 1.85189e-07 20.4704 2.14607e-07 18.0035C2.44421e-07 15.5032 0.468461 13.1674 1.40538 10.9958C2.34231 8.82428 3.63148 6.91747 5.27291 5.27538C6.91434 3.6333 8.82033 2.34346 10.9909 1.40588C13.1614 0.468624 15.4966 1.84796e-07 17.9965 2.14607e-07C20.4638 2.44028e-07 22.7914 0.46846 24.9795 1.40538C27.1675 2.34231 29.0825 3.63149 30.7246 5.27291C32.3667 6.91434 33.6565 8.82033 34.5941 10.9909C35.5314 13.1614 36 15.4966 36 17.9965ZM33.4286 18C33.4286 13.7143 31.9286 10.0714 28.9286 7.07143C25.9286 4.07143 22.2857 2.57143 18 2.57143C13.7143 2.57143 10.0714 4.07143 7.07143 7.07143C4.07143 10.0714 2.57143 13.7143 2.57143 18C2.57143 22.2857 4.07143 25.9286 7.07143 28.9286C10.0714 31.9286 13.7143 33.4286 18 33.4286C22.2857 33.4286 25.9286 31.9286 28.9286 28.9286C31.9286 25.9286 33.4286 22.2857 33.4286 18Z' fill='%23E52713' fill-opacity='0.5'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.control_carrusel .prev::before {
    transform: rotate(180deg);
}

.control_carrusel .paginas {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    color: #4D4D4D;
}

/* Notas */
.seccion-notas {
    background: #fafafa;
}

.seccion-notas .titulo-linea {
    color: #4D4D4D;
}

.titulo-linea {
    color: #8B8B8B;
    text-align: center;
    font-weight: 300;
    font-size: 2.188rem;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 40px;
}

.titulo-linea::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A7A7A7;
    flex: 1;
}

.titulo-linea span {
    flex: 3;
    max-width: fit-content;
}

.titulo-linea::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A7A7A7;
    flex: 1;
}

.seccion-calidad .subtitle,
.seccion-notas .subtitle {
    text-align: center;
    color: #4D4D4D;
    margin-bottom: 64px;
    font-size: 1.313rem;
    line-height: 1.563rem;
}

.subtitle .semiBold {
    font-weight: 600;
}

.nota-principal {
    padding: 0 42px 0 0;
}

.nota-item {
    position: relative;
}

.nota-item .nota-imagen {
    margin-bottom: 24px;
}
.nota-item .nota-imagen img {}
.nota-item .nota-contenido {
    font-size: 1.125rem;
    line-height: 1.563rem;
    color: #4D4D4D;
}
.nota-item .nota-contenido .etiqueta {
        font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    background-color: #F98363;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 28px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.nota-item .nota-contenido h3 {
    font-size: 1.688rem;
    line-height: 1.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.nota-item .nota-contenido p {}
.nota-item .nota-contenido .link {
    color: var(--almagro-red);
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1.563rem;
    font-weight: 400;
}
.nota-item .nota-contenido .link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M9.13125 6.75H0V5.25H9.13125L4.93125 1.05L6 0L12 6L6 12L4.93125 10.95L9.13125 6.75Z' fill='%23E52713' fill-opacity='1'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}

.notas-aside {
    /*padding: 0 21px;*/
}

.notas-aside .cta {
    width: 100%;
    height: 59px;
    margin-top: 40px;
}

.notas-aside .nota-item .nota-imagen {
    margin-bottom: 14px;
}

.notas-aside .nota-item .nota-contenido .etiqueta {
    font-size: 0.625rem;
    line-height: 1.125rem;
    font-weight: 500;
    width: 112px;
    height: 21px;
    margin-bottom: 11px;
}

.notas-aside .nota-item:first-of-type .nota-contenido .etiqueta {
    background-color: #668BFF;
}

.notas-aside .nota-item:last-of-type .nota-contenido .etiqueta {
    background-color: #68B68F;
}

.notas-aside .nota-item .nota-contenido h3 {
    font-size: 1.25rem;
    line-height: 1.563rem;
    margin-bottom: 0;
    max-width: 310px;
}

.notas-aside .nota-item .nota-contenido .wrapper-link {
    display: grid;
    grid-template-columns: 1fr 12px;
    align-items: flex-end;
}

.notas-aside .nota-item .nota-contenido .wrapper-link .link::after {
    margin-left: 0;
}

/* Newsletter */
.seccion-newsletter {
    background-image: url('../../assets/img/banner-newsletter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 125px 0;
    color: #fff;
    text-align: center;
}

.seccion-newsletter h2 {
    font-size: 1.563rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0;
}

.newsletter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.newsletter-form {
    max-width: 662px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 26px;
    border: none;
    border-radius: 0;
    font-size: 1.063rem;
    line-height: 1.313rem;
    width: 472px;
    max-width: 100%;
}

.btn-newsletter {
    font-size: 1.25rem;
    background: var(--almagro-red);
    color: white;
    border: none;
    padding: 9px 30px;
    border-radius: 25px;
    font-weight: 700;
    line-height: 1;
    width: 160px;
    height: 44px;
    border: 2px solid var(--almagro-red);
    transition: all .5s ease;
}

.btn-newsletter:hover {
    background-color: #fff;
    color: var(--almagro-red);
}

/* Footer */
.footer {
    background: var(--almagro-footer);
    color: white;
    padding: 100px 0 40px;
}

.footer hr.hr {
    background-color: rgb(255 255 255 / 50%);
    margin: 60px 0 30px;
    opacity: 1;
}

.footer_copy .copy {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer_copy .copy a {
    color: inherit;
    font-weight: 400;
    text-decoration: none;
}

.footer_social a {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    text-decoration: none;
}

.footer h5 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 400;
}

.footer h5::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 2px;
    background-color: var(--almagro-red);
    margin-left: 5px;
}

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

.footer ul li {
    margin-bottom: 10px;
    line-height: 1;
}

.footer ul li p,
.footer ul li a {
    color: #CFCFCF;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.2;
}

.footer ul li a:hover {
    color: white;
}

.twitter::after {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M9.294 6.928L14.357 1h-1.2L8.762 6.147L5.25 1H1.2l5.31 7.784L1.2 15h1.2l4.642-5.436L10.751 15h4.05zM7.651 8.852l-.538-.775L2.832 1.91h1.843l3.454 4.977l.538.775l4.491 6.47h-1.843z'/%3E%3C/svg%3E");
}

/* Tiny Slider Custom Styles */
.tns-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 33px;
}

.tns-nav button {
    width: 13px;
    height: 13px;
    margin: 0;
    border-radius: 50%;
    border: 2px solid #E1E1E1;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.tns-nav .tns-nav-active {
    background: #E1E1E1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Interna */
.seccion-interna-head {}
.seccion-interna-head h2 {
    font-size: 2.625rem;
    font-weight: 600;
    color: #4D4D4D;
}
.seccion-interna-head h2 .extraBold {
    font-weight: 800;
}

.seccion-proyectos hr {
    background-color: #A09D9D;
    color: #A09D9D;
    opacity: 1;
    margin: 64px 0;
}

.proyecto-head {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 69px;
    margin-bottom: 64px;
}
.proyecto-head h2 {
    color: #4D4D4D;
    font-weight: 800;
    font-size: 2.813rem;
    line-height: 1;
    margin-bottom: 0;
}
.proyecto-head p {
    grid-column: 2 / 4;
    color: #4D4D4D;
    font-size: 1.375rem;
    line-height: 1.2;
    max-width: 770px;
}

.proyecto-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 69px;
}

.card.card-proyecto {
    border: 0;
    border-radius: 0;
    color: #4D4D4D;
}
.card.card-proyecto .card-imagen {
    border-radius: 10px;
    overflow: hidden;
}
.card.card-proyecto .card-imagen .card-imagen_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card.card-proyecto .card-imagen .etiqueta {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #D86868;
    width: 149px;
    height: 29px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card.card-proyecto .card-imagen .piloto {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #F6F6F6;
    width: 169px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card.card-proyecto .card-imagen .piloto::before {
    content: "";
    display: inline-block;
    width: 144px;
    height: 21px;
    background-image: url("../../assets/img/piloto-disponible.svg");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
.card.card-proyecto .card-body {
    padding: 27px 0;
}
.card.card-proyecto .card-body h4 {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 20px;
}
.card.card-proyecto .card-body p {
    font-size: 0.938rem;
    line-height: 1;
    font-weight: 600;
}
.card.card-proyecto .card-body p:first-of-type {
    color: #797979;
    margin-bottom: 10px;
}
.card.card-proyecto .card-body .box-precio-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #D9D9D9;
    line-height: 1;
}
.card.card-proyecto .card-body .box-precio-cta small {
    color: #757575;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.3;
}
.card.card-proyecto .card-body .box-precio-cta .precio {
    font-weight: 700;
    font-size: 1.688rem;
    line-height: 1;
}
.card.card-proyecto .card-body .box-precio-cta .btn.btn-card {
    color: #3F3F3F;
    font-weight: 600;
    font-size: 1.063rem;
    line-height: 1.125rem;
    background-color: #EFEFEF;
    border-radius: 5px;
    box-shadow: 51px 51px 84px 0px rgba(135, 140, 189, 0.06);
    width: 165px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.card.card-proyecto .card-body .box-precio-cta .btn.btn-card::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.904459 10L0 9.1125L4.19108 5L0 0.8875L0.904459 0L6 5L0.904459 10Z' fill='%231F1F1F'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 8px;
}

.card.card-proyecto .card-body .box-precio-cta .btn.btn-card:hover {
    background-color: var(--almagro-red);
    color: white;
}

.card.card-proyecto .card-imagen .etiqueta.blanco {
    background-color: #fff;
    color: #757575;
    width: 100px;
}
.card.card-proyecto .card-imagen .etiqueta.verde {
    background-color: #83BA63;
    width: 100px;
}


.nota-item .nota-imagen {
  overflow: hidden;      /* recorta el exceso */
  position: relative;    /* asegura que el hijo respete límites */
}

.nota-item .nota-imagen img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;           /* que siempre llene su caja */
}

.nota-item:hover .nota-imagen img {
  transform: scale(1.05); /* rotate(-0.25deg);*/
}