 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
     cursor: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Roboto', sans-serif;
 }

 p,
 span,
 a,
 div {
     font-family: 'Roboto', sans-serif;
 }

 .cursor {
     width: 20px;
     height: 20px;
     border: 2px solid #2563eb;
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9999;
     transition: all 0.1s ease;
     transform: translate(-50%, -50%);
 }

 .cursor-follower {
     width: 40px;
     height: 40px;
     border: 1px solid rgba(37, 99, 235, 0.3);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9998;
     transition: all 0.3s ease;
     transform: translate(-50%, -50%);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 header {
     background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
     color: white;
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 28px;
     font-weight: bold;
     background: linear-gradient(45deg, #fff, #f0f0f0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     letter-spacing: 1px;
 }

 .logo span {
     color: #60a5fa;
     -webkit-text-fill-color: #60a5fa;
 }

 .nav-links {
     display: flex;
     gap: 30px;
     list-style: none;
 }

 .nav-links a {
     color: white;
     text-decoration: none;
     transition: opacity 0.3s;
 }

 .nav-links a:hover {
     opacity: 0.8;
 }

 .hero {
     background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
     color: white;
     padding: 180px 0 120px;
     text-align: center;
     position: relative;
     overflow: hidden;
     min-height: 100vh;
     display: flex;
     align-items: center;
 }

 #polygons-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 64px;
     margin-bottom: 25px;
     animation: fadeInUp 1s ease;
     font-weight: 900;
     letter-spacing: -2px;
     line-height: 1.2;
 }

 .hero h1 .highlight {
     background: linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: shimmer 3s linear infinite;
 }

 @keyframes shimmer {
     to {
         background-position: 200% center;
     }
 }

 .hero .subtitle {
     font-size: 24px;
     margin-bottom: 20px;
     opacity: 0.95;
     animation: fadeInUp 1s ease 0.2s both;
     font-weight: 300;
     letter-spacing: 1px;
 }

 .hero p {
     font-size: 18px;
     margin-bottom: 40px;
     opacity: 0.9;
     animation: fadeInUp 1s ease 0.3s both;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.8;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     animation: fadeInUp 1s ease 0.4s both;
     flex-wrap: wrap;
 }

 .cta-button {
     display: inline-block;
     background: white;
     color: #1e3a8a;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 18px;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .cta-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .cta-button-secondary {
     display: inline-block;
     background: transparent;
     color: white;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 18px;
     border: 2px solid white;
     transition: all 0.3s;
 }

 .cta-button-secondary:hover {
     background: white;
     color: #1e3a8a;
     transform: translateY(-5px);
 }

 .hero-features {
     display: flex;
     justify-content: center;
     gap: 50px;
     margin-top: 60px;
     animation: fadeInUp 1s ease 0.5s both;
     flex-wrap: wrap;
 }

 .hero-feature {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .hero-feature-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     backdrop-filter: blur(10px);
 }

 .hero-feature-text {
     text-align: left;
 }

 .hero-feature-text strong {
     display: block;
     font-size: 18px;
     font-weight: 700;
 }

 .hero-feature-text span {
     font-size: 14px;
     opacity: 0.8;
 }

 .scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     animation: bounce 2s infinite;
     cursor: pointer;
     z-index: 2;
 }

 .scroll-indicator::before {
     content: '↓';
     font-size: 32px;
     color: white;
     opacity: 0.7;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     40% {
         transform: translateX(-50%) translateY(-10px);
     }

     60% {
         transform: translateX(-50%) translateY(-5px);
     }
 }

 @media (max-width: 768px) {
     .hero {
         padding: 140px 0 80px;
         min-height: 90vh;
     }

     .hero h1 {
         font-size: 48px;
         letter-spacing: -1px;
     }

     .hero .subtitle {
         font-size: 20px;
     }

     .hero p {
         font-size: 17px;
         padding: 0 10px;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }

     .cta-button,
     .cta-button-secondary {
         width: 100%;
         max-width: 300px;
     }

     .hero-features {
         gap: 30px;
     }
 }

 .services {
     padding: 80px 0;
     background: #f8f9fa;
 }

 .section-title {
     text-align: center;
     font-size: 36px;
     margin-bottom: 50px;
     color: #333;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: white;
     padding: 45px 35px;
     border-radius: 20px;
     text-align: center;
     transition: all 0.4s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border: 2px solid transparent;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #1e3a8a, #2563eb);
     transform: scaleX(0);
     transition: transform 0.4s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
     border-color: #e0e7ff;
 }

 .service-icon {
     font-size: 64px;
     margin-bottom: 25px;
     display: inline-block;
     transition: transform 0.4s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1) rotate(5deg);
 }

 .service-card h3 {
     font-size: 26px;
     margin-bottom: 18px;
     color: #1e3a8a;
     font-weight: 800;
 }

 .service-card p {
     color: #64748b;
     line-height: 1.9;
     margin-bottom: 25px;
     font-size: 16px;
 }

 .service-features {
     list-style: none;
     margin: 25px 0;
     text-align: left;
 }

 .service-features li {
     padding: 10px 0;
     color: #475569;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 15px;
 }

 .service-features li::before {
     content: '✓';
     color: #10b981;
     font-weight: bold;
     font-size: 18px;
 }

 .service-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
     color: white;
     padding: 12px 30px;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 700;
     font-size: 15px;
     transition: all 0.3s ease;
     margin-top: 10px;
 }
 .section-subtitle {
    text-align: center;
    font-size: 22px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

 .service-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
 }

 .technologies {
     padding: 100px 0;
     background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
 }

 .technologies .section-title {
     color: white;
     font-size: 42px;
     margin-bottom: 70px;
 }

 .tech-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin-top: 40px;
 }

 .tech-badge {
     background: white;
     padding: 40px 30px;
     border-radius: 20px;
     text-align: center;
     transition: all 0.4s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
 }

 .tech-badge:hover {
     transform: translateY(-15px) scale(1.05);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .tech-icon {
     width: 80px;
     height: 80px;
     margin-bottom: 10px;
     object-fit: contain;
 }

 .tech-name {
     font-size: 18px;
     font-weight: 700;
     color: #1e293b;
 }

 .contact {
     padding: 100px 0;
     background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .contact::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
     opacity: 0.3;
 }

 .contact-content {
     position: relative;
     z-index: 1;
     max-width: 800px;
     margin: 0 auto;
 }

 .contact h2 {
     font-size: 48px;
     margin-bottom: 25px;
     font-weight: 900;
 }

 .contact .subtitle {
     font-size: 22px;
     margin-bottom: 20px;
     opacity: 0.95;
 }

 .contact p {
     font-size: 18px;
     margin-bottom: 40px;
     opacity: 0.9;
     line-height: 1.8;
 }

 .contact-methods {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .whatsapp-button {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: #25D366;
     color: white;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     font-size: 18px;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
 }

 .whatsapp-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
 }

 .phone-button {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: white;
     color: #1e3a8a;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     font-size: 18px;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .phone-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .contact-features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .contact-feature {
     background: rgba(255, 255, 255, 0.1);
     padding: 25px;
     border-radius: 15px;
     backdrop-filter: blur(10px);
     transition: all 0.3s;
 }

 .contact-feature:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px);
 }

 .contact-feature-icon {
     font-size: 32px;
     margin-bottom: 10px;
 }

 .contact-feature h4 {
     font-size: 18px;
     margin-bottom: 8px;
     font-weight: 700;
 }

 .contact-feature p {
     font-size: 14px;
     margin: 0;
     opacity: 0.9;
 }

 footer {
     background: #1e293b;
     color: white;
     padding: 60px 0 30px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-section h3 {
     font-size: 20px;
     margin-bottom: 20px;
     font-weight: 700;
     color: #60a5fa;
 }

 .footer-section p {
     line-height: 1.8;
     opacity: 0.8;
     font-size: 15px;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #cbd5e1;
     text-decoration: none;
     transition: color 0.3s, padding-left 0.3s;
     display: inline-block;
     font-size: 15px;
 }

 .footer-links a:hover {
     color: #60a5fa;
     padding-left: 5px;
 }

 .footer-contact-info {
     list-style: none;
 }

 .footer-contact-info li {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 15px;
 }

 .footer-contact-info li span {
     opacity: 0.8;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     text-align: center;
 }

 .footer-bottom p {
     opacity: 0.7;
     font-size: 14px;
 }

 @media (max-width: 768px) {
     .contact h2 {
         font-size: 36px;
     }

     .contact-methods {
         flex-direction: column;
         align-items: center;
     }

     .whatsapp-button,
     .phone-button {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }

     .footer-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-contact-info li {
         justify-content: center;
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 64px;
     }

     .nav-links {
         display: none;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }
 }

 .floating {
     animation: floating 3s ease-in-out infinite;
 }

 @keyframes floating {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .about {
     padding: 100px 0;
     background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
     position: relative;
 }

 .about::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, #2563eb, transparent);
 }

 .about-content {
     text-align: center;
     max-width: 1000px;
     margin: 0 auto 80px;
 }

 .about-text h2 {
     font-size: 42px;
     margin-bottom: 20px;
     color: #1e3a8a;
     font-weight: 900;
     position: relative;
     display: inline-block;
 }

 .about-text h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #1e3a8a, #2563eb);
     border-radius: 2px;
 }

 .about-description {
     font-size: 20px;
     color: #475569;
     line-height: 1.8;
     margin-top: 35px;
     font-weight: 400;
 }

 .about-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 60px;
 }

 .about-card {
     background: white;
     padding: 40px 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     border: 2px solid transparent;
     text-align: center;
 }

 .about-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
     border-color: #2563eb;
 }

 .about-card-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 32px;
     margin: 0 auto 25px;
     transition: transform 0.3s;
 }

 .about-card:hover .about-card-icon {
     transform: scale(1.1) rotate(5deg);
 }

 .about-card h3 {
     font-size: 22px;
     color: #1e3a8a;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .about-card p {
     color: #64748b;
     line-height: 1.7;
     font-size: 16px;
 }

 .about-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-top: 60px;
     position: relative;
 }

 .stat-box {
     background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
     color: white;
     padding: 45px 30px;
     border-radius: 20px;
     text-align: center;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .stat-box::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     opacity: 0;
     transition: opacity 0.4s;
 }

 .stat-box:hover::before {
     opacity: 1;
 }

 .stat-box:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
 }

 .stat-number {
     font-size: 36px;
     font-weight: 900;
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 14px;
     opacity: 0.9;
 }

 .process {
     padding: 80px 0;
     background: #f8f9fa;
 }

 .process-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .process-step {
     background: white;
     padding: 40px 30px;
     border-radius: 15px;
     text-align: center;
     position: relative;
     transition: transform 0.3s;
 }

 .process-step:hover {
     transform: translateY(-10px);
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: bold;
     margin: 0 auto 20px;
 }

 .process-step h3 {
     font-size: 20px;
     margin-bottom: 15px;
     color: #333;
 }

 .process-step p {
     color: #666;
     line-height: 1.6;
 }

 .parallax-section {
     position: relative;
     overflow: hidden;
 }

 .mouse-trail {
     position: fixed;
     width: 10px;
     height: 10px;
     background: rgba(37, 99, 235, 0.5);
     border-radius: 50%;
     pointer-events: none;
     z-index: 9997;
     animation: trailFade 1s ease-out forwards;
 }

 @keyframes trailFade {
     to {
         transform: scale(0);
         opacity: 0;
     }
 }

 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     left: 30px;
     width: 60px;
     height: 60px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
     z-index: 9999;
     transition: all 0.3s ease;
     animation: pulse 2s infinite;
     text-decoration: none;
 }

 .whatsapp-float:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
 }

 .whatsapp-float svg {
     width: 35px;
     height: 35px;
     fill: white;
 }

 @keyframes pulse {

     0%,
     100% {
         box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
     }
 }

 .development-process {
     padding: 100px 0;
     background: white;
     position: relative;
 }

 .process-timeline {
     position: relative;
     max-width: 1000px;
     margin: 60px auto 0;
 }

 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #1e3a8a 0%, #2563eb 100%);
     transform: translateX(-50%);
 }

 .timeline-item {
     position: relative;
     margin-bottom: 60px;
     display: flex;
     align-items: center;
     opacity: 0;
     animation: fadeInUp 0.6s ease forwards;
 }

 .timeline-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .timeline-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .timeline-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .timeline-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 .timeline-item:nth-child(5) {
     animation-delay: 0.5s;
 }

 .timeline-item:nth-child(6) {
     animation-delay: 0.6s;
 }

 .timeline-item.left {
     flex-direction: row;
 }

 .timeline-item.right {
     flex-direction: row-reverse;
 }

 .timeline-content {
     width: 45%;
     padding: 30px;
     background: white;
     border-radius: 15px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border-left: 4px solid #2563eb;
 }

 .timeline-item.right .timeline-content {
     border-left: none;
     border-right: 4px solid #2563eb;
 }

 .timeline-content:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .timeline-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 32px;
     font-weight: bold;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
     box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
 }

 .timeline-content h3 {
     font-size: 24px;
     color: #1e3a8a;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .timeline-content p {
     color: #666;
     line-height: 1.8;
     font-size: 16px;
 }

 .timeline-duration {
     display: inline-block;
     background: #e0e7ff;
     color: #1e40af;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 13px;
     font-weight: 600;
     margin-top: 10px;
 }

 @media (max-width: 768px) {
     .timeline-line {
         left: 30px;
     }

     .timeline-item {
         flex-direction: row !important;
         padding-left: 80px;
     }

     .timeline-content {
         width: 100%;
         border-left: 4px solid #2563eb !important;
         border-right: none !important;
     }

     .timeline-icon {
         left: 30px;
     }

     .whatsapp-float {
         bottom: 20px;
         left: 20px;
         width: 50px;
         height: 50px;
     }

     .whatsapp-float svg {
         width: 28px;
         height: 28px;
     }
 }