@charset "utf-8";
/* CSS Document */

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


html, body {
	 margin: 0;
  padding: 0;
  height: 100%;
}

.wrapper {
    display: flex;
  flex-direction: column;
  min-height: 100vh;
}

    body {
      --footer-color: #0A1D37;
      font-family: Arial, sans-serif;
      color: #1C2B39;
      padding-top: 80px;
      scroll-behavior: smooth;
    }
a {
  text-decoration: none;
  color: inherit; /* o el color que desees */
}

    .logo-menu img {
      width: 180px;
      height: 35px;
    }
    nav {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav ul li {
      position: relative;
    }
    nav ul li a {
      color: #0a1d37;
      text-decoration: none;
      font-weight: bold;
      position: relative;
      padding: 6px 8px;
      display: flex;
      align-items: center;
    }
    nav ul li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #0f2c43;
      bottom: -4px;
      left: 0;
      transition: 0.3s;
    }
    nav ul li a:hover::after {
      width: 100%;
    }
    nav ul li ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      border: 1px solid #ddd;
		border-top: 0px;
      display: none;
      flex-direction: column;
      padding: 10px 0;
      min-width: 250px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
		margin-top: 13px;
    }
    nav ul li.show > ul {
      display: flex;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    nav ul li ul li a {
      padding: 8px 8px;
      color: #1C2B39;
	
    }
    nav ul li ul li a:hover {
      background-color: #f0f0f0;
    }
    .dropdown-arrow-menu {
      margin-left: 5px;
      transition: transform 0.3s;
    }
    nav ul li.show > a .dropdown-arrow-menu {
      transform: rotate(180deg);
    }
   .btn-quote-header-menu {
      padding: 8px 16px;
      background-color:#1a3f5d;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
	  
    }
    .btn-quote-header-menu:hover {
      background-color: #0f2c43;
      transform: scale(1.05);
    }
    .menu-toggle-menu {
		
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
    }
    .menu-toggle-menu span {
      height: 3px;
      background: #0a1d37;
      margin: 4px 0;
      width: 25px;
      transition: 0.3s;
    }
    .menu-toggle-menu.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle-menu.open span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle-menu.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 768px) {
      .menu-toggle-menu {
        display: flex;
      }
      nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 270px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
      }
      nav.show {
        left: 0;
      }
      nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
      }
      nav ul li {
        width: 100%;
      }
      nav ul li a {
        width: 100%;
        justify-content: space-between;
      }
      nav ul li ul {
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding-left: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
      }
      nav ul li.show ul {
        max-height: 500px;
        opacity: 1;
      }
		
		   .btn-quote-header-menu {
      padding: 8px 16px;
      background-color:#1a3f5d;
      color: white;
      border: none;
      border-radius: 5px;
		font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
		width: 80%;
		height: 40px;
		margin-top: 30px;
    }
		
    }


/*estilos index */

 .hero_index  {
      position: relative;
      height:500px;
      background:  url('https://conetsu.com/imgeslider/poda-937333052.jpg') no-repeat center center/cover;
      animation: fadeIn 2s ease;
      display: flex;
      align-items: center;
    }
    
 
    .formulario-flotante_index  h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #1C2B39;
      text-align: center;
    }
    .formulario-flotante_index  input,
    .formulario-flotante_index  button {
      display: block;
      width: 100%;
      margin-bottom: 10px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .formulario-flotante_index  button {
      background:#1a3f5d ;
      color: white;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }
    .formulario-flotante_index  button:hover {
      background: #0f2c43;
    }
    .articulos_index  {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
    }
    .articulos_index::before {
	  content: "What do you need service for?";
      width: 100%;
      font-size: 30px;
      font-weight: bold;
      color: #1C2B39;
      margin-bottom: 15px;
      text-align: center;
      animation: fadeInUp 1s ease;
    }
    
  
    .articulo_index :hover {
      transform: translateY(-8px);
    }
    .articulo_index  img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .articulo_titulo_index {
      margin: 10px auto;
    }
   
    
   @media (max-width: 768px) {
  .descripcion_index  > div {
    flex-direction: column !important;
  }
  .descripcion_index  img {
    margin: 0 auto 20px auto !important;
    width: 100% !important;
    height: auto !important;
  }
	   
 .logo img{
		  
		  width: 180px;
		  height: 35px;
	  }
   .articulos_index::before {
	  content: "What do you need service for?";
      width: 100%;
      font-size: 22px;
      font-weight: bold;
      color: #1C2B39;
      margin-bottom: 10px;
      text-align: center;
      animation: fadeInUp 1s ease;
    }
	.articulo_titulo_index {
      margin: 10px;
		text-decoration:none;
    }
 
	 /*  .articulo_index a{
      margin: 10px auto;
		text-decoration:none;
		   
    }   */
}
    .descripcion_index  p {
      max-width: 600px;
      font-size: 18px;
      line-height: 1.6;
    }
    footer {
      background-color: #0A1D37;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }
    .footer-contenido {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    .footer-columna {
      flex: 1;
      min-width: 200px;
    }
    .footer-columna ul {
      list-style: none;
    }
    .footer-columna ul li a {
      color: white;
      text-decoration: none;
      display: block;
      margin: 5px 0;
    }
    .redes {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 30px;
    }
    .redes a {
      color: white;
      font-size: 28px;
      text-decoration: none;
    }
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    @media (max-width: 768px) {
      header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      nav {
        background: white;
        padding: 30px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        z-index: 999;
      }
      nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        transition: left 0.3s;
        align-items: flex-start;
      }
      nav.show {
        left: 0;
      }
      nav a,
      nav .btn-quote-header  {
        margin-bottom: 10px;
      }
      .menu-toggle_index  {
        display: flex;
      }
      .formulario-flotante_index  h2 {
        font-size: 18px;
        text-align: center;
      }
		
	
		
    }
    h2 {
    color: var(--footer-color);
  }
.articulo_titulo_index{
    color: var(--footer-color);
  }

  .formulario-flotante_index  {
    margin: 0;
    left: 5%;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    width: 350px;
	  
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease forwards;
	  
  }
  .formulario-flotante_index  select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    font-size: 14px;
  }
  .articulo_index  {
	  
	width: 100%; 
    max-width:   400px;
    height: 370px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    animation: fadeInUp 1s ease forwards;
  }
  .descripcion_index  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    animation: fadeIn 1.2s ease forwards;
  }
	@media (max-width: 768px) {
  .descripcion_index  > div {
    flex-direction: column !important;
  }
  .descripcion_index  img {
    margin: 0 auto 20px auto !important;
    width: 100% !important;
    height: auto !important;
  }
  .hero {
    height: 300px !important;
  }
  .formulario-flotante_index {
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
	  
	  
  }
}  
/*termina estilos index*/

/*art estilos */

    .articulo-seccion_art1 {
      background: linear-gradient(to bottom, #f0f0f0, #ffffff);
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      animation: fadeIn 1.5s ease;
    }

    .articulo-img_art1 {
      flex: 0 0 auto;
      width: 600px;
      height: auto;
      border-radius: 10px;
      max-width: 90%;
      animation: slideInLeft 1s ease;
    }

    .articulo-texto_art1 {
      flex: 1 1 0;
      min-width: 280px;
      text-align: justify;
      animation: slideInRight 1s ease;
    }

    .articulo-texto_art1 h1 {
      color: #0A1D37;
      margin-bottom: 20px;
    }

    .articulo-texto_art1 p {
      font-size: 18px;
      line-height: 1.6;
    }

    .formulario-articulo_art1 {
      margin-top: 40px;
      text-align: center;
      animation: fadeInUp 1.5s ease;
      width: 100%;
    }

    .formulario-articulo_art1 h2 {
      color: #0A1D37;
      margin-bottom: 20px;
		
		
		
    }

    .formulario-articulo_art1 input[type="text"] {
      padding: 10px;
      width: 150px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-right: 10px;
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .formulario-articulo_art1 input[type="text"]:focus {
      transform: scale(1.03);
    }

    .formulario-articulo_art1 button {
      padding: 10px 20px;
      background-color: #1a3f5d;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .formulario-articulo_art1 button:hover {
      background-color: #0F2C43;
      transform: scale(1.05);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-100px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(100px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 768px) {
      .articulo-seccion_art1 {
        flex-direction: column;
        align-items: center;
	
		  align-content: center;
      }

      .articulo-img_art1 {
        margin-bottom: 10px;
        width: 100%;
        height: auto;
		  margin-top: -20px;
      }

      .articulo-texto_art1 h1 {
        margin-top: -10px;
		
		  text-align: center;
      }

      .formulario-articulo_art1 input[type="text"] {
        width: 50%;
        margin-bottom: 10px;
      }

      .formulario-articulo_art1 button {
        width: 40%;
      }
    }


     .contenedor56 {
            background-color: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            max-width: 800px;
            width: 90%;
		 font-size: 18px;
		 margin: 10px auto;
		 margin-bottom:450px;
		margin-top: 50px;
        }
        .contenedor56 h1 {
            color: #0A1D37;
            margin-bottom: 10px;
        }
        .contenedor56 p {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .btn-volver56 {
            display: inline-block;
            padding: 12px 25px;
            background-color: #0A1D37;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
        }
        .btn-volver56:hover {
            background-color: darkred;
        }


/*termina arti*/


