* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffffff;
    color: #111;
}

.header {
  background: #000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: relative;
  z-index: 1000;
}

/* GLASS EFFECT */
.glass {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* LOGO */
.logo img {
  width: 100px;
  padding: 10px;
  animation: tireSpin 1.2s ease-out;
}

@keyframes tireSpin {
  to { transform: rotate(360deg); }
}

/* PHONE BUTTON */
.phone-btn {

  background: red;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { transform: scale(1.06); }
}

/* DESKTOP MENU */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu a,
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  padding: 12px 18px;
  overflow: hidden;
}

/* WATER DROP EFFECT */
.menu a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.menu a:hover::after,
.mobile-menu a:hover::after {
  transform: translate(-50%, -50%) scale(8);
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 80px;
  text-align: center;
}

.mobile-menu li {
  margin: 25px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

}

/* Flecha pequeña elegante */
.submenu-arrow {
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

/* Rotar cuando está abierto */
.menu-item-has-sub.open > a .submenu-arrow {
  transform: rotate(-135deg);
}

/* Asegurar alineación correcta */
.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
}


@keyframes pulsing {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.slider {
  position: relative;
  width: 100%;
   height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Texto */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.slide-content h2 {
  color: white;
  font-size: 42px;
  font-weight: bold;
  max-width: 90%;
  line-height: 1.5;
  animation: textFade 1.2s ease;
  text-shadow: #000 4px 4px 3px;
}

/* Texto animado */
@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .slider {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 600px;
  }
}
/* ---------------------------------------- */
/* ---------------------------------------- */
/* ---------------------------------------- */
.SECTIONS {
    width: 100%;
    margin: auto;
}
.SECTION_1 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
}
.SECT_1_a {
    width: 50%;
    padding: 20px;
}
.SECT_1_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.SECT_1_a p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}
.SECT_1_b {
    width: 50%;
    display: block;
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
/*---------------------------------------*/
/*---------------------------------------*/
/*---------------------------------------*/
.SECTION_2 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
}
.SECT_2_a {
    width: 50%;
    padding: 20px;
    order: 1;
}
.SECT_2_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.SECT_2_a p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}
.SECT_2_b {
    width: 50%;
    display: block;
    order: 0;
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
/*---------------------------------------*/
/*---------------------------------------*/
/*---------------------------------------*/
.SECTION_3 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
    background-color: #111;
}
.SECT_3_a {
    width: 50%;
    padding: 20px;
    
}
.SECT_3_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}
.SECT_3_a p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}
.btn-primary-3 {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-3:hover {
    background: white;
    color: #111;
    transform: translateY(-3px);
}
.SECT_3_b {
    width: 50%;
    display: block;
    
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .SECT_1_a, .SECT_1_b, .SECT_2_b {
        width: 100%;
    }
    .SECT_2_a {
        width: 100%;
        order: 0;
    }
    .SECT_3_a, .SECT_3_b {
        width: 100%;
        padding: 30px 10px;
    }
    .SECT_b_IMG {
    width: 350px;
    display: block;
    margin: auto;
}
}

/* ---------------------------------------- */
/* ---------------------------------------- */
/* ---------------------------------------- */

/* INFO SECTION C*/
.info-section-C {
    padding: 100px 20px;
    background-color: #111;
}

.info-container-C {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-text-C {
    flex: 1;
}

.info-text-C h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-text-C p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-primary-C {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-C:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.info-image-C {
    flex: 1;
    width: 400px;

}
.Img_C {
    width: 100%;
    display: block;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.contact-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    transition: border 0.3s ease;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}
.contact-form button {
    cursor: pointer;
}

/* FOOTER */

.main-footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 20px;
}
.footer-logo-wrapper {
    perspective: 1000px;
}
.Footer_Logo {
    width: 90px;
    margin: 10px auto;
    display: inline-block;
    animation: coinSpin 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }

    20% {
        transform: rotateY(360deg);
    }

    /* Pausa (logo quieto) */
    60% {
        transform: rotateY(360deg);
    }

    /* Segundo giro */
    80% {
        transform: rotateY(720deg);
    }

    100% {
        transform: rotateY(720deg);
    }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-box p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-box i {
    margin-right: 8px;
    color: #d6d6d6;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        margin-top: 10px;
    }

    .info-container {
        flex-direction: column;
    }

    .banner h2 {
        font-size: 30px;
    }
}

/*============================================*/
/*============================================*/
/*==============(Services.php)================*/
/*============================================*/
/*============================================*/

.Box_services {
    width: 100%;
    height: 200px;
    background-image: url("Services_Background.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay elegante */
.Box_services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* TÍTULO */
.Tittle_Services {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.2;

    /* Animación */
    animation: titleFadeZoom 1.2s ease-out forwards;
    opacity: 0;
}

/* FADE + ZOOM (viene de lejos) */
@keyframes titleFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .Box_services {
        height: 170px;
        background-attachment: scroll; /* mejora rendimiento mobile */
    }
}

@media (max-width: 480px) {
    .Box_services {
        height: 150px;
    }
}

.SECTIONS {
    width: 100%;
    margin: auto;
}
.SECTION_4 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
}
.SECT_4_a {
    width: 50%;
    padding: 20px;
}
.SECT_4_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.SECT_4_a p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}
.SECT_4_b {
    width: 50%;
    display: block;
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
/*---------------------------------------*/
/*---------------------------------------*/
/*---------------------------------------*/
.SECTION_5 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
    background-color: #111;
}
.SECT_5_a {
    width: 50%;
    padding: 20px;
    order: 1;
}
.SECT_5_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}
.SECT_5_a p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}
.btn-primary-5 {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-5:hover {
    background: white;
    color: #111;
    transform: translateY(-3px);
}
.SECT_5_b {
    width: 50%;
    display: block;
    order: 0;
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
/*---------------------------------------*/
/*---------------------------------------*/
/*---------------------------------------*/
.SECTION_6 {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
}
.SECT_6_a {
    width: 50%;
    padding: 20px;
    order: 0;
}
.SECT_6_a h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.SECT_6_a p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}
.SECT_6_b {
    width: 50%;
    display: block;
    order: 1;
}
.SECT_b_IMG {
    width: 90%;
    margin: auto;
    display: block;
}
@media (max-width: 768px) {
    .SECT_4_a, .SECT_4_b, .SECT_5_b {
        width: 100%;
    }
    .SECT_5_a {
        width: 100%;
        order: 0;
    }
    .SECT_6_a, .SECT_6_b {
        width: 100%;
        padding: 30px 10px;
    }
    .SECT_b_IMG {
    width: 350px;
    display: block;
    margin: auto;
}
}

/*============================================*/
/*============================================*/
/*==============(Tires.php)================*/
/*============================================*/
/*============================================*/

.Box_tires {
    width: 100%;
    height: 200px;
    background-image: url("Tires_Background.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay elegante */
.Box_tires::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* TÍTULO */
.Tittle_tires {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.2;

    /* Animación */
    animation: titleFadeZoom 1.2s ease-out forwards;
    opacity: 0;
}

/* FADE + ZOOM (viene de lejos) */
@keyframes titleFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .Box_services {
        height: 170px;
        background-attachment: scroll; /* mejora rendimiento mobile */
    }
}

@media (max-width: 480px) {
    .Box_services {
        height: 150px;
    }
}
.Catalogo_Tires {
    width: 100%;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    /* Fondo degradado animado */
    background: linear-gradient(
        120deg,
        #000000,
        #1a1a1a,
        #343434,
        #000000
    );
    background-size: 300% 300%;
    animation: gradientMove 9s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .Catalogo_Tires {
        animation-duration: 18s; /* más suave en mobile */
    }
}
/* CARD */
.tire-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

/* Fade escalonado */
.tire-card:nth-child(1) { animation-delay: 0.1s; }
.tire-card:nth-child(2) { animation-delay: 0.2s; }
.tire-card:nth-child(3) { animation-delay: 0.3s; }
.tire-card:nth-child(4) { animation-delay: 0.4s; }
.tire-card:nth-child(5) { animation-delay: 0.5s; }
.tire-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TITULO */
.tire-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

/* IMAGEN */
.tire-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

/* DESCRIPCION */
.tire-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* BOTON */
.tire-card a {
    display: inline-block;
    padding: 12px 22px;
    background: red;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tire-card a:hover {
    background: #c70000;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .Catalogo_Tires {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .Catalogo_Tires {
        grid-template-columns: 1fr;
        padding: 40px 15px;
    }
}

/*============================================*/
/*============================================*/
/*==============(Contact.php)=================*/
/*============================================*/
/*============================================*/

.Box_contact {
    width: 100%;
    height: 200px;
    background-image: url("Contact_Background.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay elegante */
.Box_contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* TÍTULO */
.Tittle_contact {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.2;

    /* Animación */
    animation: titleFadeZoom 1.2s ease-out forwards;
    opacity: 0;
}

/* FADE + ZOOM (viene de lejos) */
@keyframes titleFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .Box_contact {
        height: 170px;
        background-attachment: scroll; /* mejora rendimiento mobile */
    }
}

@media (max-width: 480px) {
    .Box_contact {
        height: 150px;
    }
}

.Jobs_Container {
    width: 100%;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: #111;
}

/* CARD */
.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.25s; }
.job-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ICONO */
.job-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #000;
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* TITULO */
.job-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

/* DESCRIPCION */
.job-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* UBICACION */
.job-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.job-location i {
    color: red;
    margin-right: 6px;
}

/* BOTON */
.apply-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: red;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.apply-btn:hover::after {
    transform: scaleX(1);
}

.apply-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .Jobs_Container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .Jobs_Container {
        grid-template-columns: 1fr;
        padding: 50px 15px;
    }
}

.Contact_Section {
    width: 100%;
    padding: 80px 20px;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
}

/* FORM */
.Contact_Form {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TITULO */
.Contact_Form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

/* INPUTS */
.form-group {
    margin-bottom: 20px;
}

.Contact_Form input,
.Contact_Form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.Contact_Form input:focus,
.Contact_Form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

/* BOTON */
.Contact_Form button {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

.Contact_Form button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .Contact_Form {
        padding: 35px 25px;
    }

    .Contact_Form h2 {
        font-size: 24px;
    }
}


/*============================================*/
/*============================================*/
/*==============(OcasioApp.php)=================*/
/*============================================*/
/*============================================*/


.Box_OcasioApp {
    width: 100%;
    height: 200px;
    background-image: url("OcasioApp_Background.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay elegante */
.Box_OcasioApp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* TÍTULO */
.Tittle_OcasioApp {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.2;

    /* Animación */
    animation: titleFadeZoom 1.2s ease-out forwards;
    opacity: 0;
}

/* FADE + ZOOM (viene de lejos) */
@keyframes titleFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .Box_OcasioApp {
        height: 170px;
        background-attachment: scroll; /* mejora rendimiento mobile */
    }
}

@media (max-width: 480px) {
    .Box_OcasioApp {
        height: 150px;
    }
}
.OcasioApp {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.OcasioApp_1 {
    width: 100%;
}
.OcasioApp_img {
    width: 100%;
    display: block;
}
/*============================================*/
/*============================================*/
/*==============(Financing.php)=================*/
/*============================================*/
/*============================================*/


.Box_financing {
    width: 100%;
    height: 200px;
    background-image: url("Financing_Background.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay elegante */
.Box_financing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* TÍTULO */
.Tittle_financing {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.2;

    /* Animación */
    animation: titleFadeZoom 1.2s ease-out forwards;
    opacity: 0;
}

/* FADE + ZOOM (viene de lejos) */
@keyframes titleFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .Box_financing {
        height: 170px;
        background-attachment: scroll; /* mejora rendimiento mobile */
    }
}

@media (max-width: 480px) {
    .Box_financing {
        height: 150px;
    }
}

/* ===============================
   FINANCING SECTION
=================================*/

.financing-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.financing-container {
  max-width: 1100px;
  width: 100%;
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: financingFadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.financing-content {
  text-align: center;
}

.financing-title {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.financing-description {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.85;
}

.financing-qr-box {
  margin-top: 20px;
}

.financing-qr-text {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.financing-qr-image {
  width: 200px;
  max-width: 80%;
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.financing-qr-image:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes financingFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
  .financing-container {
    padding: 40px;
  }

  .financing-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .financing-container {
    padding: 30px 20px;
  }

  .financing-title {
    font-size: 24px;
  }

  .financing-description {
    font-size: 14px;
  }

  .financing-qr-image {
    width: 160px;
  }
}
