/*!
 * Placksoft CSS Version 1.0.0
 * Copyright 2020-2022 Placksoft
 */
 /* ==========
    1. General Tools - line 21
    2. Back to the top - line 51
    3. Header / Navbar - line 81
    4. Navbar Desktop - line 101
    5. Mobile Navigation - line 145
    6. Portada - line 205
    7. Estilos Generales de textos - line 267
    8. Sobre Nosotros - line 314
    9. Servicios - line 332
    10. Procesos - line 380
    11. Paquetes - line 440
    12. Portafolio - line 470
    13. Contact  - line 513
    14. Footer - line 637
    15. Atributtes of Placksoft - Line 651
========== */
 /* ==========
    General Tools 
========== */
::selection {
	color: #fff;
	background-color: #007a6c;
}
::-moz-selection {
	color: #fff;
	background-color: #007a6c;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}
a {
  color: #022136;
  text-decoration: none;
}
a:hover {
  color: #002739;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
/* ==========
  Back to the top 
========== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 1.5rem;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* ==========
  Header / Navbar
========== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px 0;
  background: transparent;
}
#header.header-scrolled {
  background: #032136;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  max-height: 45px;
}
/* ==========
  Navbar Desktop
========== */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}
.navbar .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: #007a6c;
}
/* ==========
  Mobile Navigation
========== */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 39, 57, 0.95);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  border-radius: 10px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 12px 20px;
  font-size: 16px;
  color: #002739;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #007a6c;
}
.navbar-mobile .active::after {
  display: none;
}
/* ==========
  Portada 
========== */
#porta {
  width: 100%;
  height: 100vh;
  background: url("../img/placlogo/677897893354.svg")right no-repeat;
  background-size: cover !important;
}
#porta img{
  width: 40% !important;
  height: 100% !important;
  display: block;
  margin: auto;
  margin-top: 80px;
}
#porta p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 26px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
#porta p span {
  color: yellow;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.btn__hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #007a6c;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid #007a6c;
}
.btn__hero:hover {
  background: #005f54;
  border-color: #005f54;
  color: #fff;
  transform: translateY(-2px);
}
.btn__hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn__hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 820px) {
  #porta {
    width: 100% !important;
    height: 40vh;
    background: url("../img/placlogo/67789mov7893354.svg");
    background-repeat: no-repeat !important;
  }
  #porta img{
    width: 40% !important;
  }
  #porta p {
    font-size: 1.5rem;
    line-height: 24px;
    position: relative;
  }
  .hero-cta {
    margin-top: 15px;
  }
  .btn__hero, .btn__hero-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
@media (max-width: 520px) {
  #porta {
    width: 100% !important;
    background: url("../img/placlogo/67789mov7893354blie.svg");
    background-size: cover !important;
    height: 25vh;
  }
  #porta img{
    width: 50% !important;
    margin-top: -2rem;
  }
  #porta p {
    font-size: 1rem;
  }
  .hero-cta {
    margin-top: 10px;
    gap: 10px;
  }
  .btn__hero, .btn__hero-outline {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 360px) {
  #porta {
    height: 30vh;
  }
}
/* ==========
  Estilos Generales de textos
========== */
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #002739;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #007a6c;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}
@media screen and (max-width:520px) {
  .section-title h2 {
    font-size: 1.5rem;
    margin-top: -1rem;
    margin-bottom: 0rem !important;
    padding-bottom: 0px !important;
  }
}
/* ==========
  Sobre Nosotros 
========== */
.about .content h2 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #002739;
}
.who__about{
  font-weight: 500;
  font-style: italic;
  color: #002739;
}
.img__about{
  object-fit: cover;
  width: 100% !important;
  margin-bottom: 1rem !important;
}
.about-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.about-box i {
  font-size: 2.5rem;
  color: #007a6c;
  margin-bottom: 1rem;
  display: block;
}
.about-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002739;
  margin-bottom: 0.75rem;
}
.about-box p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}
/* ==========
  Servicios
========== */
.services{
  margin-top: -4rem;
}
.services .icon-box {
  text-align: center;
  padding: 2rem;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon img {
  position: absolute;
  width: 100% !important;
  margin-bottom: 2rem;
}
.services .icon-box .icon i {
  font-size: 3rem;
  color: #007a6c;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (max-width:900px) {
  .services .icon-box {
    margin-bottom: 2rem;
  }
}
/* ==========
  Procesos
========== */
.procesos {
  padding: 60px 0;
}
.procesos .proceso-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 220px;
}
.procesos .proceso-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}
.procesos .proceso-box .proceso-numero {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: #007a6c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.procesos .proceso-box i {
  font-size: 2.5rem;
  color: #002739;
  margin: 1rem 0;
  display: block;
}
.procesos .proceso-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002739;
  margin-bottom: 0.75rem;
}
.procesos .proceso-box p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .procesos .proceso-box {
    margin-bottom: 2rem;
  }
}
/* ==========
  Paquetes
========== */
.paquetes {
  padding: 60px 0;
  background: #f8f9fa;
}
.paquetes .paquete-box {
  padding: 30px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  text-align: center;
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
}
.paquetes .paquete-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.paquetes .paquete-box.featured {
  border: 2px solid #007a6c;
  transform: scale(1.05);
}
.paquetes .paquete-box.featured:hover {
  transform: scale(1.05) translateY(-10px);
}
.paquetes .paquete-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007a6c;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.paquetes .paquete-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.paquetes .paquete-header i {
  font-size: 2.5rem;
  color: #007a6c;
  margin-bottom: 15px;
  display: block;
}
.paquetes .paquete-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002739;
  margin-bottom: 5px;
}
.paquetes .paquete-precio {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007a6c;
  margin: 10px 0;
}
.paquetes .paquete-precio span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}
.paquetes .paquete-desc {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}
.paquetes .paquete-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}
.paquetes .paquete-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #555;
  font-size: 0.95rem;
}
.paquetes .paquete-features li:last-child {
  border-bottom: none;
}
.paquetes .paquete-features li i {
  color: #007a6c;
  margin-right: 10px;
}
.paquetes .paquete-btn {
  display: inline-block;
  background: #002739;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.paquetes .paquete-btn:hover {
  background: #007a6c;
  color: #fff;
}
.paquetes .paquete-box.featured .paquete-btn {
  background: #007a6c;
}
.paquetes .paquete-box.featured .paquete-btn:hover {
  background: #002739;
}
@media screen and (max-width: 991px) {
  .paquetes .paquete-box.featured {
    transform: scale(1);
  }
  .paquetes .paquete-box.featured:hover {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 768px) {
  .paquetes .paquete-box {
    margin-bottom: 2rem;
  }
}
/* ==========
  Testimonios
========== */
.testimonios {
  padding: 60px 0;
  background: #f8f9fa;
}
.testimonios .testimonio-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 20px 10px;
}
.testimonios .testimonio-content {
  margin-bottom: 20px;
}
.testimonios .testimonio-content .quote-icon {
  font-size: 2.5rem;
  color: #007a6c;
  display: block;
  margin-bottom: 15px;
}
.testimonios .testimonio-content p {
  font-style: italic;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
}
.testimonios .testimonio-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002739;
  margin-bottom: 5px;
}
.testimonios .testimonio-author span {
  font-size: 0.9rem;
  color: #007a6c;
}
.testimonios .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonios .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
}
.testimonios .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007a6c;
}
/* ==========
  Productos
========== */
.productos {
  padding: 60px 0;
}
.productos .section-title p {
  font-size: 1rem;
  color: #6c757d;
}
.producto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  overflow: hidden;
}
.producto-info .producto-badge {
  display: inline-block;
  background: #007a6c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.producto-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #002739;
  margin-bottom: 1rem;
}
.producto-info .producto-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.producto-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.producto-features li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #45505b;
}
.producto-features li i {
  color: #007a6c;
  margin-right: 8px;
  font-size: 1rem;
}
.producto-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn__placksoft-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 2px solid #007a6c;
  color: #007a6c;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn__placksoft-outline:hover {
  background: #007a6c;
  color: #fff;
}
.btn__placksoft-filled {
  background: #007a6c;
  color: #fff;
}
.btn__placksoft-filled:hover {
  background: #005f54;
  color: #fff;
}
.producto-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.producto-mockup {
  position: relative;
  width: 100%;
  max-width: 350px;
}
.producto-mockup > i {
  display: none;
}
.producto-screen {
  background: #002739;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 39, 57, 0.3);
}
.screen-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #001a27;
}
.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #007a6c;
  opacity: 0.6;
}
.screen-dot:first-child { background: #ef4444; }
.screen-dot:nth-child(2) { background: #f59e0b; }
.screen-dot:nth-child(3) { background: #10b981; }
.screen-body {
  padding: 2rem;
  text-align: center;
  min-height: 200px;
}
.screen-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #007a6c;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.screen-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.screen-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 80px;
}
.screen-bars .bar {
  width: 30px;
  background: linear-gradient(to top, #007a6c, #00a896);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out forwards;
}
@keyframes barGrow {
  from { height: 0; }
}
@media screen and (max-width: 768px) {
  .producto-card {
    padding: 2rem 1.5rem;
  }
  .producto-info h3 {
    font-size: 2rem;
  }
  .producto-visual {
    padding: 1.5rem 0;
  }
}
/* ==========
  Portafolio
========== */
.porta{
  margin-top: -4rem;
}
.porta .section-header {
  margin-bottom: 10px;
}
 .porta .portfolio-slider {
  overflow: hidden;
}
.porta .portfolio-item {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.porta .portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.porta .portfolio-item .portfolio-img {
  width: 100% !important;
  box-shadow: none;
  margin-top: 0;
  border-radius: 8px;
}
.porta .portfolio-item h2 {
  font-size: 1.3rem;
  margin-top: 1rem;
}
.porta .portfolio-item p {
  font-size: 0.95rem;
  color: #45505b;
  margin-bottom: 1rem;
}
.porta .swiper-pagination {
  margin-top: 1.5rem;
  position: relative;
}
.porta .swiper-button-prev,
.porta .swiper-button-next {
  color: #002739;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.porta .swiper-button-prev::after,
.porta .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
}
.porta .swiper-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  border: 1px solid #000 !important;
}
.porta .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #002739 !important;
}
/* ==========
  Contact 
========== */
.contact .info {
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #002739;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h3 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}
.contact .info a {
  padding: 0 0 0 1rem;
  text-decoration: none;
  font-size: 14px;
  color: #000;
}
.contact .info .phone, .contact .info .face{
  margin-top: 40px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input, .contact .php-email-form select {
  height: 44px;
}
.contact .php-email-form select {
  color: #6c757d;
  cursor: pointer;
}
.contact .php-email-form select:focus {
  color: #212529;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background:#002739;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  width: 100%;
}
.contact .php-email-form button[type=submit]:hover {
  background: transparent;
  border: 1px solid #002739;
  color: #111;
}
@media screen and (max-width:900px) {
  .contact{
    margin-top: -4rem;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ==========
  Footer 
========== */
footer {
  background: #001a27 !important;
  color: #fff !important;
  font-size: 1rem;
  padding: 0;
}
footer .footer-content {
  padding: 60px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-col {
  margin-bottom: 30px;
}
footer .footer-logo {
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
footer .footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
footer .footer-social {
  display: flex;
  gap: 12px;
}
footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
footer .footer-social a:hover {
  background: #007a6c;
  transform: translateY(-3px);
}
footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #007a6c;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-links li {
  margin-bottom: 10px;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
footer .footer-links a:hover {
  color: #007a6c;
  padding-left: 5px;
}
footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
footer .footer-contact li i {
  color: #007a6c;
  font-size: 1.1rem;
  flex-shrink: 0;
}
footer .footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
footer .footer-contact li a:hover {
  color: #007a6c;
}
footer .copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  footer .footer-content {
    padding: 40px 0 20px;
  }
  footer .footer-col {
    text-align: center;
  }
  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .footer-social {
    justify-content: center;
  }
  footer .footer-links a:hover {
    padding-left: 0;
  }
}
/* ==========
  Atributtes of Placksoft 
========== */
.btn__placksoft{
  padding: 0.5rem;
  text-align: center;
  background: #002739;
  color: #fff;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.btn__placksoft:hover{
  color: #fff;
}
html{
  overflow-y: scroll;
  scroll-behavior: smooth;
}
  /*Firefox*/
html{
  scrollbar-color: #002739 #000;
  scrollbar-width: auto;
}
/*Webkit*/
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track {
  background-color: #000;
}
html::-webkit-scrollbar-thumb {
  background-color: #002739;
}
/* ==========
  WhatsApp Flotante
========== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}