@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900);
:root {
    --color-first: #007bdf;
    --color-border: #d1d1d1;
    --color-alert: #ff3c32;
    --color-resalt: #ba1e2d;
    --color-dark: #000;
    --color-font-color: #232323d8;
}

:root {
    --z-back: -10;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

:root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --body-font-size: 0.9rem;
    --small-font-size: 0.75rem;
}
@media screen and (min-width: 960px) {
    :root {
        --h1-font-size: 2.5rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --body-font-size: 1rem;
        --small-font-size: 0.8rem;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Lato, sans-serif;
    font-size: var(--body-font-size);
    background: linear-gradient(to bottom, #000000 5%, #ffffff 95%) no-repeat;;
      padding-top: 70px; /* Ajustar según la altura del header */
      height: 100vh;
      margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

hr {
    --animation: deslis 2s infinite;
    margin-bottom: 2rem;
    background-color: var(--color-resalt);
    border: 0px;
    width: 10%;
}

@keyframes deslis {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5%);
    }
}

.l-container {
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.l-section {
    margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
    .l-section {
        margin-bottom: 4rem;
    }
}
.l-section--diagonal {
    position: relative;
}
.l-section--diagonal:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f5f3f3;
    z-index: var(--z-back);
    transform: skewY(-1.5deg) scaleY(1.025);
}
@media screen and (min-width: 960px) {
    .l-section--diagonal:before {
        transform: skewY(-2deg) scaleY(1.1);
    }
}

.s-5 {
    width: 5%;
}

.s-10 {
    width: 10%;
}

.s-15 {
    width: 15%;
}

.s-20 {
    width: 20%;
}

.s-25 {
    width: 25%;
}

.s-30 {
    width: 30%;
}

.s-35 {
    width: 35%;
}

.s-40 {
    width: 40%;
}

.s-45 {
    width: 45%;
}

.s-50 {
    width: 50%;
}

.s-55 {
    width: 55%;
}

.s-60 {
    width: 60%;
}

.s-65 {
    width: 65%;
}

.s-70 {
    width: 70%;
}

.s-75 {
    width: 75%;
}

.s-80 {
    width: 80%;
}

.s-85 {
    width: 85%;
}

.s-90 {
    width: 90%;
}

.s-95 {
    width: 95%;
}

.s-100 {
    width: 100%;
}

@media screen and (min-width: 960px) {
    .l-5 {
        width: 5%;
    }
    .l-10 {
        width: 10%;
    }
    .l-15 {
        width: 15%;
    }
    .l-20 {
        width: 20%;
    }
    .l-25 {
        width: 25%;
    }
    .l-30 {
        width: 30%;
    }
    .l-35 {
        width: 35%;
    }
    .l-40 {
        width: 40%;
    }
    .l-45 {
        width: 45%;
    }
    .l-50 {
        width: 50%;
    }
    .l-55 {
        width: 55%;
    }
    .l-60 {
        width: 60%;
    }
    .l-65 {
        width: 65%;
    }
    .l-70 {
        width: 70%;
    }
    .l-75 {
        width: 75%;
    }
    .l-80 {
        width: 80%;
    }
    .l-85 {
        width: 85%;
    }
    .l-90 {
        width: 90%;
    }
    .l-95 {
        width: 95%;
    }
    .l-100 {
        width: 100%;
    }
}

.center-block {
    margin-left: auto;
    margin-right: auto;
}

.center-content {
    text-align: center;
}

.main-header {
    height: 4.5rem;
    border-bottom: 1px solid #6b6b6b;
    background-color: #141618;
    position: fixed;  /* Fija el menú en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo negro con transparencia */
    backdrop-filter: blur(10px); /* Efecto de desenfoque en el fondo */
    padding: 10px 0;
    z-index: 1000; /* Asegura que esté sobre otros elementos */
    transition: background 0.3s ease;
}

.main-header__block {
    justify-content: space-between;
    align-items: center;
    height: vh;
}

.main-logo {
    height: 3rem;
    transition: 0.7s;
}
.main-logo:hover {
    transform: scale(1.1);
}

.main-menu {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
@media screen and (min-width: 960px) {
    .main-menu {
        display: flex;
    }
}

.main-menu__item {
    padding: 1rem;
    border-bottom: 1px solid #404048;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .main-menu__item {
        border-bottom: 0;
    }
}

.main-menu__link {
    color: #dddbdb;
    margin-left: 1rem;
}
@media screen and (min-width: 960px) {
    .main-menu__link {
        color: #dddbdb;
    }
}

.main-menu__link {
  text-decoration: none;
  color: white;
  font-size: 15px;
  padding: 10px 15px;
  position: relative;
  transition: color 0.3s ease;
}



/* Línea animada debajo del enlace */
.main-menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 10%;
  height: 3px;
  background: #f30707;
  transform: scaleX(0); /* Oculta la línea (se contrae al centro) */
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

/* Efecto al hacer hover */
.main-menu__link:hover::after {
    font-size: 15px;
    transform: scaleX(1); /* Expande la línea hacia los lados */
    width: 100%;
    left: 0;  
}



/* Cambio de color y desplazamiento del texto */
.main-menu__link:hover {
  --color: #8a0505;  
  font-weight: bold;
  transform: translateY(-3px);
}

.main-nav {
    position: fixed;
    height: calc(100vh - 4.5rem);
    width: 80vw;
    background: #282d31;
    top: 4.5rem;
    right: -80vw;
    transition: right 0.3s;
    padding-top: 1rem;
    z-index: var(--z-fixed);
}
@media screen and (min-width: 960px) {
    .main-nav {
        position: static;
        background: transparent;
        padding-top: 0;
        height: auto;
        width: auto;
    }
}
.main-nav.show {
    right: 0;
}

.main-menu-toggle {
    width: 2.2rem;
    height: 1.6rem;
    background: linear-gradient(
        #ccc 20%,
        transparent 20%,
        transparent 40%,
        #ccc 40%,
        #ccc 60%,
        transparent 60%,
        transparent 80%,
        #ccc 80%
    );
    cursor: pointer;
}
@media screen and (min-width: 960px) {
    .main-menu-toggle {
        display: none;
    }
}

.main-banner {
    --padding: 2rem 1rem 3rem;
    --logo-height: 3rem;
    height: 60vh;
    padding: var(--padding);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /*
    &__content h1{
        // position: absolute;
        transform: translate(-50%,-50%);
        font-size: 4em;
        transform: 3s;

    }

    &__content h1:nth-child(1){
        color: transparent;
        -webkit-text-stroke: 2px #03a9f4;
    }

    &__content h1:nth-child(2){
        color: #03a9f4;
        -webkit-text-stroke: 2px #03a9f4;
        animation: animate 7s ease-in-out infinite;
    }*/
}
@media screen and (min-width: 960px) {
    .main-banner {
        --padding: 5rem 1rem 6rem;
        --logo-height: 5rem;
        height: calc(100vh - 72px);
    }
}
.main-banner__logo {
    height: var(--logo-height);
    display: block;
    margin: 0 auto 0.5rem;
}
.main-banner__content {
    position: relative;
    animation: scaleUpDown 3s infinite ease-in-out;
}

@keyframes scaleUpDown {
    0% {
      transform: scale(1); /* tamaño original */
    }
    50% {
      transform: scale(1.05); /* agrandar un poco */
    }
    100% {
      transform: scale(1); /* volver al tamaño original */
    }
  }

  /* Definición de la animación */
  @keyframes moveLeftRight {
    0% {
      transform: translateX(-100%); /* Comienza fuera de la pantalla a la izquierda */
    }
    50% {
      transform: translateX(0); /* Llega al centro (posición original) */
    }
    100% {
      transform: translateX(100%); /* Mueve fuera de la pantalla a la derecha */
    }
  }

.main-banner__hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/tubo-pvc-agua.webp);
    background-size: cover;
    
    transition: all 0.1s ease-out;
    animation: banner 15s infinite linear;
    
}
.main-banner__hero-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.8)
    );
   
}
.main-banner__title {
    font-size: var(--h1-font-size);
    font-size: 4rem;
    margin-bottom: 0;
}
.main-banner__description {
    margin-bottom: 2rem;
}

@keyframes animate {
    0%,
    100% {
        clip-path: polygon(
            0% 44%,
            7% 44%,
            16% 44%,
            24% 45%,
            33% 48%,
            41% 52%,
            46% 56%,
            53% 58%,
            62% 60%,
            72% 61%,
            82% 62%,
            91% 59%,
            97% 57%,
            100% 55%,
            99% 100%,
            0% 99%
        );
    }
    50% {
        clip-path: polygon(
            0% 57%,
            9% 62%,
            19% 64%,
            31% 64%,
            41% 61%,
            52% 57%,
            61% 51%,
            70% 45%,
            82% 43%,
            90% 41%,
            98% 41%,
            100% 99%,
            0% 98%
        );
    }
}

@keyframes banner {
    0% {
        background-image: url(../img/tubo-pvc-agua.webp);
    }
    25% {
        background-image: url(../img/tubo-pvc-agua.webp);
    }
    26% {
        background-image: url(../img/tubo-pvc-desague-alcantarilla.webp);
    }
    50% {
        background-image: url(../img/tubo-pvc-desague-alcantarilla.webp);
    }
    51% {
        background-image: url(../img/tubo-pvc-desague-titulo.webp);
    }
    75% {
        background-image: url(../img/tubo-pvc-desague-titulo.webp);
    }
    76% {
        background-image: url(../img/tubo-pvc-electrico.webp);
    }
    100% {
        background-image: url(../img/tubo-pvc-electrico.webp);
    }
}



/*
.card {
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);

    &__img img {
        display: block;
    }

    &__content {
        padding: 1rem;
        background: #fff;
    }

    &__subtitle {
        margin-top: -1rem;
        margin-bottom: .5rem;
        opacity: .6;
    }

    &__footer {
        border-top: 1px solid var(--color-border);
        margin-top: 1rem;
        padding-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
}
*/
.card {
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
    --transition: 0.7s;
}

.card__img img {
    display: block;
    align-items: center;
    --animation-duration: 1s;
  
}
.card__content {
    padding: 1rem;
    background: #fff;
    text-align: center;
}
.card__title {
    color: var(--color-resalt);
    padding: 1rem;
    text-align: center;
}
.card__subtitle {
    color: #1d1d1d;
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.card__description {
    margin-bottom: 3rem;
}
.card:hover {
    border: 1px solid #404048;
    transform: scale(1.03);
    box-shadow: 0.25rem 0.25rem 0.5rem;
}

.bor-box {
    border-radius: 0.5em 0.5em 0 0;
}

.cards-grid-2 {
    margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
    .cards-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
}

@media screen and (min-width: 960px) {
    .cards-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 2rem;
    }
}

.cards-grid-4 {
    margin-bottom: 2rem;
    animation: moveSideToSideUP 6s infinite ease-in-out;
}
@media screen and (min-width: 960px) {
    .cards-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 2rem;
    }
    .cards-grid-4 .ip {
        width: 65%;
        margin-right: auto;
        margin-left: auto;
    }
}



.button {
    color: var(--color-alert);
    display: inline-block;
    border: 1px solid;
    padding: 0.5em 1em;
    border-radius: 0.25rem;
}
.button:hover {
    background: var(--color-resalt);
    color: #fff;
    transition: 0.3s;
}

.button-back {
    color: #dddbdb;
    display: inline-block;
    border: 1px solid;
    padding: 0.5em 1em;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}
.button-back:hover {
    background: var(--color-resalt);
    color: #fff;
    border-radius: 2rem;
    transition: 0.3s;
    transform: scale(1.2);
}

.btn-cotizar-container {
    width: 100%;
    height: 1rem;
    text-align: center;
    display: grid;
    margin-bottom: 2.5rem;
}

.btn {
    justify-content: center;
    align-content: center;
    background: 1px solid var(--color-resalt);
}

.btn-tubos {
    padding: 1rem;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    background: black;
    border-radius: 50px 50px;
    border: 2px solid #e5e5e5;
    transition: 0.2s ease;
    width: auto;
}
@media screen and (min-width: 960px) {
    .btn-tubos {
        width: 30%;
    }
}
.btn-tubos:hover {
    background: #ba1e2d;
    border: 2px solid #e5e5e5;
    font-size: 1.1rem;
    transform: scale(1.05);
}
.btn-tubos:active {
    background: black;
    transform: scale(1);
}

[class*="icon-"]::before {
    content: "";
    display: inline-block;
    margin-right: 0.15rem;
    width: 1em;
    height: 1em;
}

.icon-location::before {
    background: url(../img/icon-pin.svg);
}

.icon-mail::before {
    background: url(../img/icon-pin.svg);
}

.main-marcas {
    height: 60vh;
    text-align: center;
    color: var(--color-font-color);
}
@media screen and (min-width: 960px) {
    .main-marcas {
        height: 50vh;
    }
}
.main-marcas__content {
    text-align: center;
}
.main__title{
    font-size: var(--h1-font-size);
    margin-bottom: 0;
    animation: moveSideToSide 2s infinite ease-in-out;
}
/* Definición de la animación de izq a der */
@keyframes moveSideToSide {
    0% {
      transform: translateX(-1.5%); /* Comienza ligeramente a la izquierda */
    }
    50% {
      transform: translateX(1.5%); /* Mueve ligeramente a la derecha */
    }
    100% {
      transform: translateX(-1.5%); /* Vuelve ligeramente a la izquierda */
    }
  }

  /* Definición de la animación de arr a aba */
@keyframes moveSideToSideUP {
    0% {
      transform: translateY(-4%); /* Comienza ligeramente a la izquierda */
    }
    50% {
      transform: translateY(4%); /* Mueve ligeramente a la derecha */
    }
    100% {
      transform: translateY(-4%); /* Vuelve ligeramente a la izquierda */
    }
  }

.main-marcas__description {
    color: #404048;
}

.slider-marca {
    width: 80vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider-marca .slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
    width: calc(300px * 14);
}

.slider-marca .slider-m {
    width: 200px;
}

.slider-marca .slider-m img {
    width: 100%;
}

.logo-marca {
    width: 100%;
    height: auto;
    filter: grayscale(100%); /* Imagen en blanco y negro */
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Transición suave */
}

.slide-m:hover .logo-marca {
    filter: grayscale(0%); /* Mostrar en color */
    transform: scale(1.05); /* Pequeño zoom al pasar el mouse */
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-300px * 7));
        transform: translateX(calc(-300px * 7));
    }
}

.main-docum {
    margin-left: auto;
    margin-right: auto;
    color: var(--color-font-color);
}
.main-docum__content {
    text-align: center;
}
.main-docum__title {
    font-size: var(--h1-font-size);
    margin-bottom: 0;
}
.main-docum__description {
    color: #404048;
    margin-bottom: 3.5rem;
}

@media screen and (min-width: 960px) {
    .cards-grid-docum {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 2rem;
    }
}

.main-delivery {
    margin-left: auto;
    margin-right: auto;
}
.main-delivery__content {
    text-align: center;
}

.main-delivery__description {
    color: #404048;
    margin-bottom: 3.5rem;
}

.frase {
    opacity: 0.6;
}

.cajas {
    margin-bottom: 2rem;
    display: grid;
    color: var(--color-font-color);
    justify-content: center;
    align-content: center;
}
.cajas__img img {
    display: block;
    align-items: center;
}
.cajas__content {
    padding: 1rem;
    background: #fff;
    text-align: center;
}
.cajas__title {
    color: var(--color-resalt);
    padding: 1rem;
    text-align: center;
}
.cajas__subtitle {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.cajas__description {
    margin-bottom: 3rem; 
}

.main-productos {
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    margin-bottom: 2rem;
    color: var(--color-font-color);
}
.main-productos__content {
    text-align: center;
}
.main-productos__title {
    font-size: var(--h1-font-size);
    margin-bottom: 0;
}
.main-productos__description {
    color: #404048;
    margin-bottom: 3.5rem;
}

.ip {
    width: 45%;
    margin-right: auto;
    margin-left: auto;
}


.main-cotizacion {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.main-cotizacion__content {
    text-align: center;
}
.main-cotizacion__title {
    font-size: var(--h1-font-size);
    margin-bottom: 0;
    padding-top: 2rem;
}
.main-cotizacion__description {
    color: #404048;
    margin-bottom: 2rem;
    color: #dddbdb;
}

.frase {
    opacity: 0.6;
}

.sec-coti {
    /*
    background-image: linear-gradient(rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.6)), url(../img/call.jpg);
    background-size: cover;
    background-position: 20%;
    */
    color: #fff;
    margin-top: -2rem;
    position: relative;
}
.sec-coti:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.6)),
        url(../img/call.jpg);
    background-size: cover;
    background-position: 20%;
    z-index: var(--z-back);
    transform: skewY(-1.5deg) scaleY(1.025);
}
@media screen and (min-width: 960px) {
    .sec-coti:before {
        transform: skewY(-2deg) scaleY(1.1);
    }
}

.sec-coti2 {
    /*
  background-image: linear-gradient(rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.6)), url(../img/call.jpg);
  background-size: cover;
  background-position: 20%;
  */
    margin-bottom: 0;
    color: #fff;
    margin-top: -2rem;
    position: relative;
}
.sec-coti2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.6)),
        url(../img/call.jpg);
    background-size: cover;
    background-position: 20%;
    z-index: var(--z-back);
}

.text_important {
    color: var(--color-resalt);
    font-weight: bold;
}

.box-coti {
    margin-bottom: 2rem;
    display: grid;
    color: #dddbdb;
    justify-content: center;
    align-content: center;
}
.box-coti__img img {
    display: block;
    align-items: center;
}
.box-coti__content {
    padding: 1rem;
    background: #fff;
    text-align: center;
}
.box-coti__title {
    color: #dddbdb;
    text-align: center;
}
.box-coti__subtitle {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.box-coti__description {
    margin-bottom: 3rem;
    text-align: center;
}
.box-coti__parrafo {
    background-color: rgba(2, 32, 43, 0.4);
    padding: 1.5rem;
    line-height: 1.5rem;
}
.box-coti__span {
    margin-bottom: 2rem;
}
.box-coti__icon-rojo {
    color: var(--color-resalt);
}

.whatsapp {
    border: 3px solid #f2f2f2;
    color: #eeeded;
    padding: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    border-radius: 3rem;
    transition: 0.5s;
}
.whatsapp:hover {
    transform: scale(1.05);
    color: #fff;
    border: 3px solid #fff;
    background-color: #199319;
}

.formu {
    background-color: rgba(50, 50, 50, 0.6);
    color: #000;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #dad8d8;
    width: 100%;
}

.card_text_form {
    font-size: var(--h3-font-size);
    font-weight: 400;
    text-align: left;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.form-row label,
.form-row input,
.form-row textarea {
    width: 48%;
}

.form-row form input {
    height: 3rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
    border: 1px solid #bfbfbf;
}

.form-row label {
    font-weight: bold;
}

.form-row input,
.form-row textarea {
    padding: 0.7rem;
    border: 1px solid #8b8989;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0.5em;
}

.form-row textarea {
    width: 100%;
}

.form-row input[type="submit"] {
    width: auto;
    text-align: left;
}

.form-row button {
    padding: 10px 10px;
    font-size: 1rem;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background: #02202b;
    transition: 0.2s ease;
}

.form-row button:hover {
    background: #ba1e2d;
    border-radius: 50px 50px;
    border: 2px solid #e5e5e5;
    transform: scale(1.05);
}

.form-row button:active {
    background: black;
    transform: scale(0.8);
}

.input_container {
    border: 1px solid #8b8989;
    border-radius: 5px 5px;
    width: 100%;
    margin-bottom: 10px;
}

input[type="file"] {
    color: white;
    content: "Archivo";
}

input[type="file"]::file-selector-button {
    background-color: #02202b;
    color: #e5e5e5;
    border: 0px;
    font-size: 14px;
    border-radius: 5px 5px;
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    margin-right: 20px;
    transition: 0.5s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #ba1e2d;
    color: #ffffff;
}

@media screen and (min-width: 960px) {
    .cards-grid-cotizacion {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
}

.main-contacto {
    margin-left: auto;
    margin-right: auto;
}
.main-contacto__content {
    text-align: center;
}
.main-contacto__title {
    font-size: var(--h1-font-size);
    margin-bottom: 0;
}
.main-contacto__description {
    color: #404048;
    margin-bottom: 2rem;
}

.frase {
    opacity: 0.6;
}

.card3{
    animation: scaleUpDown 3s infinite ease-in-out;
}

.cajas-contacto {
    margin-bottom: 2rem;
    display: grid;
    color: var(--color-font-color);
    justify-content: center;
    align-content: center;
}
.cajas-contacto__img img {
    display: block;
    align-items: center;
}
.cajas-contacto__content {
    padding: 1rem;
    background: #fff;
    text-align: center;
}
.cajas-contacto__title {
    text-align: center;
}
.cajas-contacto__subtitle {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.cajas-contacto__description {
    margin-bottom: 3rem;
}
.cajas-contacto__icon-rojo {
    color: var(--color-resalt);
}
.cajas-contacto__numero {
    color: #282d31;
}
.cajas-contacto__numero:hover {
    color: var(--color-resalt);
    font-weight: bold;
}

@media screen and (min-width: 960px) {
    .cards-grid-contacto {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
}

.footer {
    color: #fff;
    background-color: #141618;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.container-boton {
    background-color: rgba(24, 151, 14, 0.6);
    position: fixed;
    z-index: var(--z-fixed);
    border-radius: 50%;
    bottom: 1.06rem;
    right: 1.5rem;
    padding: 1.06rem;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover {
    background-color: rgba(24, 151, 14, 0.9);
    transform: scale(1.15);
    transition: 0.3s;
    animation: none;
}

.boton-w {
    width: 2.1rem;
    transition: ease 1s;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 151, 14, 0.85);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(6, 193, 19, 0);
    }
}

.main-agua {
    --padding: 2rem 1rem 3rem;
    --logo-height: 3rem;
    padding: var(--padding);
    margin-bottom: 2rem;
    background: #282d31;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media screen and (min-width: 960px) {
    .main-agua {
        --padding: 5rem 1rem 6rem;
        --logo-height: 5rem;
        height: 40vh;
    }
}
.main-agua__logo {
    height: var(--logo-height);
    display: block;
    margin: 0 auto 0.5rem;
}
.main-agua__content {
    position: relative;
}
.main-agua__hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: center;
    background-position: top;
    opacity: 0.2;
}
.main-agua__title {
    font-size: var(--h2-font-size);
    margin-bottom: 0;
    margin-bottom: 1rem;
}
@media screen and (min-width: 960px) {
    .main-agua__title {
        font-size: var(--h1-font-size);
        margin-bottom: 0;
    }
}
.main-agua__description {
    text-align: center;
    font-size: var(--h3-font-size);
    color: #afafaf;
}
@media screen and (min-width: 960px) {
    .main-agua__description {
        margin-bottom: 2rem;
    }
}

.parale {
    width: auto;
    height: 5em;
    padding: 1em;
    margin-bottom: 2rem;
    background-color: var(--color-resalt);
    transform: skew(-20deg);
    display: flex;
    justify-content: left;
    align-items: center;
}

.texto {
    transform: skew(20deg);
    color: #dddbdb;
    font-size: 1rem;
    font-weight: 700;
}
@media screen and (min-width: 960px) {
    .texto {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

.main-conexion__hero-img {
    background-position: center top;
}

/* ESPECIFICACIONES*/
.especificaciones {
    background-color: #dddbdb;
    border-radius: 0.8em 0.8em 0 0;
    border: 1px solid var(--color-resalt);
}
@media screen and (min-width: 960px) {
    .especificaciones {
        margin: 1.5rem 0 0;
    }
}
.especificaciones__titulo {
    background-color: var(--color-resalt);
    color: #fff;
    border-radius: 0.8em 0.8em 0 0;
    padding: 0.65em 0 0.65em;
    font-weight: bold;
}
.especificaciones__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0.8em 0.8em 0 0;
    padding: 0.5em;
}
.especificaciones__det {
    width: 40%;
    padding: 0.5em;
}
.especificaciones__description {
    font-weight: 700;
    background-color: #f0f0f0;
    padding: 0.5em;
}

.caja-agua {
    display: grid;
    margin: 2rem 0 2.5rem;
}
.caja-agua__diagrama {
    display: flex;
    justify-items: center;
    align-items: center;
}

.btn-cotizar-container {
    padding-bottom: 3rem;
}

.container-table {
    overflow-x: auto;
    position: relative;
    table-layout: fixed;
    margin-bottom: 4rem;
    min-width: 70%;
}

.tab-tubos {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    color: #666;
    table-layout: fixed;
    border-collapse: collapse;
    background: #ededed;
    width: 100%;
}

.tab-tubos thead th {
    padding: 5px 0;
    color: #fff;
    text-shadow: 1px 1px 1px #3e3e3e;
    border-top: 1px solid #cfcfcf;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.1, var(--color-resalt)),
        color-stop(0.61, var(--color-resalt)),
        color-stop(0.97, #252525)
    );
}

.tab-tubos tr:hover {
    background: #252525;
    color: #fff;
}

.tab-tubos tbody td {
    padding: 5px 10px;
    text-align: center;
    border: 2px solid #efe0e0;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-shadow: 1px 1px 1px #fff;
}

.tab-tubos tr td:nth-child(1) {
    background: #252525;
    color: #fff;
    text-shadow: 1px 1px 1px #2c2c2c;
}

.tab-tubos tr:hover {
    background: #252525;
    color: #fff;
}

.foot1 {
    border-radius: 0.8em 0.8em 0 0;
    padding: 0.5em 0 0.5em;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

/* INICIO SECCION DE GRACIAS*/
.section-gracias {
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(5, 7, 12, 0.8)
        ),
        url(../img/mensaje-gracias-pvc.jpg);
    background-size: cover;
    text-align: center;
    height: 100vh;
}

.content-gracias {
    max-width: 1200px;
    padding-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.title-gracias h1 {
    font-size: 3rem;
    font-family: "Lobster", cursive;
    margin: 2rem 2rem;
}

.descripcion-gracias {
    color: #02202b;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 2rem 2rem;
}

.btn-gracias {
    padding: 10px 10px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    background: black;
    border-radius: 50px 50px;
    border: 2px solid #e5e5e5;
    transition: 0.2s ease;
}
.btn-gracias:hover {
    background: #ba1e2d;
    border: 2px solid #e5e5e5;
    font-size: 1.1rem;
    transform: scale(1.05);
}
.btn-gracias:active {
    background: black;
    transform: scale(1);
}

/* FIN SECCION DE GRACIAS*/
/*INICIO DE REDES SOCIALES*/
.rs {
    text-align: center;
    font-size: 1.5rem;
    color: black;
    margin: 0.5rem;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
    transition: 0.5s;
}
@media screen and (min-width: 960px) {
    .rs {
        margin: 1rem;
    }
}

.text-redes {
    color: #1a1a1a;
    font-size: 0.9rem;
}

.fa-facebook:hover {
    background-color: #1877f2;
    color: white;
    box-shadow: 0 0 15px #1877f2, 0 0 45px #1877f2, 0 0 75px #1877f2,
        0 0 115px #1877f2;
    transform: scale(1.2);
}

.fa-instagram:hover {
    background-color: #9e37b8;
    color: white;
    box-shadow: 0 0 15px #9e37b8, 0 0 45px #9e37b8, 0 0 75px #9e37b8,
        0 0 115px #9e37b8;
    transform: scale(1.2);
}

.fa-tiktok:hover {
    background-color: #000000;
    color: white;
    box-shadow: 0 0 15px #000000, 0 0 45px #000000, 0 0 75px #000000,
        0 0 115px #000000;
    transform: scale(1.2);
}

.fa-youtube:hover {
    background-color: #ff0000;
    color: white;
    box-shadow: 0 0 15px #ff0000, 0 0 45px #ff0000, 0 0 75px #ff0000,
        0 0 115px #ff0000;
    transform: scale(1.2);
}

.fa-linkedin:hover {
    background-color: #0a66c2;
    color: white;
    box-shadow: 0 0 15px #0a66c2, 0 0 45px #0a66c2, 0 0 75px #0a66c2,
        0 0 115px #0a66c2;
    transform: scale(1.2);
}

/*FIN DE REDES SOCIALES*/
.small {
    font-size: var(--small-font-size);
}

/* Animación general */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Mover hacia abajo */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Posición original */
    }
}

/* Estilo del contenedor principal */
.main-productos {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 2s ease-out; /* Animación inicial */
}

.card:hover {
    transform: translateY(-10px); /* Elevar tarjeta al pasar el mouse */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Mayor sombra */
}
