/**
* Template Name: Techie
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/techie-free-skin-bootstrap-3/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2c4964;
  text-decoration: none;
}

a:hover {
  color: #2c4964;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #C2D501;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #C2D501;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2c4964;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #3a4250;
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4964;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5846f9;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* 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(28, 47, 65, 0.9);
  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;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5846f9;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5846f9;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/Hero-bg-laptop.png") center center no-repeat;
  background-size: cover;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 30px;
  color: #2C4964;
  background: #C2D501;
  border: 2px solid #C2D501;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: transparent;
  color: #C2D501;
  border: 2px solid #C2D501;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.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;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
  background-color: #EFEFE5;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #2c4964;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5846f9;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 50px 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #2C4964;
  background: #C2D501;
  border: 2px solid #C2D501;
  position: relative;
  text-decoration: none;
}

.about .content .read-more:hover {
  background: transparent;
  color: #C2D501;
  border: 2px solid #C2D501;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}
@media (max-width: 991px) {
  .about {
    text-align: center;
    
  }
  .about p{
    padding-left: 10%;
    
  }


}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.card {
  width: 100%; /* Cambiar el ancho al 100% para ocupar todo el ancho disponible */
  max-width: 300px; /* Establecer un ancho máximo para evitar que las tarjetas se expandan demasiado en pantallas grandes */
  background: #1d1d1d;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin: 30px auto; /* Centrar horizontalmente */
  margin-top: 50px;
}

/* Media Queries para pantallas de celular */
@media (max-width: 767px) {
  .card {
    margin: 10px auto; /* Reducir el margen en pantallas más pequeñas */
  }
}

/* Media Queries para pantallas medianas (tipo tablet) */
@media (min-width: 768px) and (max-width: 991px) {
  .card {
    max-width: 250px; /* Reducir el ancho máximo en pantallas de tablet */
  }
}

.card:hover {
  transform: scale(1.1); /* Aumenta el tamaño al pasar el ratón por encima */
  background-color: rgb(73, 73, 73); /* Cambia el color de fondo a un gris oscuro */
  border: 1px solid rgb(100, 100, 100);
}

.card-body {
  color: aliceblue;
  text-align: center;
}

.card-title,
.card-text {
  color: aliceblue;
  text-align: center;
}

.card-link {
  text-decoration: none;
  color: aliceblue;
}

.card-link:hover {
  color:  #94f8aa; /* Cambia el color del enlace a verde al pasar el ratón por encima */
}





/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background-color: #EFEFE5;
}

.faq .section-title h2 {
  color: #2c4964 !important;
}

.faq .section-title p {
  color: #666;
}

.faq .section-title h2::after {
  background: #2c4964;
}

.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #C2D501;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #2c4964;
}

.faq .faq-list a.collapsed:hover {
  color: #C2D501;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  text-align: center;
  padding: 20px 0 30px 0;
  background: #1d1d1d;
  color:#ffffff ;
  border-radius: 10px; /* Ajusta el valor según tus preferencias */
}

.contact .info-box:hover {
  transform: scale(1.1); /* Aumenta el tamaño al pasar el ratón por encima */
  background-color: #3a3a3a; /* Cambia el color de fondo a un gris oscuro */
  border: 1px solid rgb(114, 114, 114);
}

.contact .info-box i {
  font-size: 32px;
  color: #2c4964;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



.contact .php-email-form {
  padding: 30px;
  background: #1d1d1d;
  color:#ffffff ;
  border-radius: 10px; /* Ajusta el valor según tus preferencias */
}





.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffffff;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #11284b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  border: 1px solid rgb(114, 114, 114);

}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex; /* Cambiado a inline-flex para centrar vertical y horizontalmente */
  align-items: center; /* Centrado vertical */
  justify-content: center; /* Centrado horizontal */
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  overflow: hidden; /* Para evitar que las imágenes se desborden del círculo */
}



#footer .footer-top .social-links a:hover {
  background: #289f24;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  
  padding-right: 2px;
  color: #289f24;
  font-size: 18px;
  line-height: 1;
  
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #289f24;
}





#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Service Cards
--------------------------------------------------------------*/
.service-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  transition: all 0.3s ease;
  margin: 30px auto;
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.service-card .card-body {
  color: #333;
  text-align: center;
  padding: 30px 20px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .service-icon {
  margin-bottom: 20px;
}

.service-card .service-icon i {
  font-size: 48px;
  color: #C2D501;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.service-card:hover .card-title {
  color: #ffffff;
}

.service-card:hover .card-text {
  color: #ffffff;
}

.service-card .card-title {
  color: #2c4964;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card .card-text {
  color: #666;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-service {
  background: #C2D501;
  color: #fff;
  border: 2px solid #C2D501;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-service:hover {
  background: transparent;
  color: #C2D501;
  border-color: #C2D501;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Technology Buttons
--------------------------------------------------------------*/
.tech-btn {
  background: linear-gradient(45deg, #007BFF, #00CED1);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.tech-btn:hover {
  background: linear-gradient(45deg, #0056b3, #008ba3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
}

.tech-btn span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.tech-btn:hover span {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Technology Section Improvements
--------------------------------------------------------------*/
#tecnologias {
  padding: 80px 0 100px;
}

#tecnologias h1 {
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tech-card-container {
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

@media (max-width: 1200px) {
  .tech-card {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .tech-card {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  #tecnologias {
    padding: 60px 0 80px;
  }
  
  .tech-card .card-body {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section New
--------------------------------------------------------------*/
.contact-new {
  background-color: #E8E8DE;
  padding: 80px 0;
}

.contact-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 20px;
}

.contact-header .lead {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-email {
  background: #DC3545;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-email:hover {
  background: #C82333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.contact-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #2c4964;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.contact-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
  border: 2px solid rgba(40, 167, 69, 0.4);
}

.contact-card:hover .contact-icon i {
  color: #C2D501;
}

.contact-card:hover h4,
.contact-card:hover p {
  color: #2c4964;
}

.contact-icon {
  margin-bottom: 20px;
}

.contact-icon i {
  font-size: 48px;
  color: #2c4964;
  transition: all 0.3s ease;
}

.contact-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #2c4964;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 32px;
  }
  
  .contact-header .lead {
    font-size: 18px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-whatsapp, .btn-email {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .contact-subtitle {
    font-size: 26px;
  }
  
  .contact-new {
    padding: 60px 0;
  }
}