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

html {
     scroll-behavior: smooth;
}

body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     background-color: #101010;
     color: #ffffff;
     line-height: 1.6;
     min-height: 100vh;
     overflow-x: hidden;
     position: relative;
}

body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent 30%, rgba(26, 26, 26, 0.1) 30%, rgba(26, 26, 26, 0.1) 70%, transparent 70%), linear-gradient(-45deg, transparent 30%, rgba(26, 26, 26, 0.08) 30%, rgba(26, 26, 26, 0.08) 70%, transparent 70%), linear-gradient(135deg, #0a0a0a 0%, #101010 50%, #0a0a0a 100%);
     z-index: -2;
     pointer-events: none;
}

body::after {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(circle, rgba(59, 167, 118, 0.20) 2px, transparent 2px), radial-gradient(circle, rgba(255, 152, 0, 0.20) 2px, transparent 2px);
     background-size: 120px 60px;
     background-position: 0 0, 60px 0;
     z-index: -1;
     pointer-events: none;
     opacity: 1;
}

.pillars-grid,
.values-grid {
     overflow: visible;
}

.pillar-card,
.value-card {
     margin-bottom: 10px;
}

.header {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: calc(100% - 40px);
     max-width: 1400px;
     z-index: 1000;
     background: rgba(26, 26, 26, 0.7);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(59, 167, 118, 0.15);
     border-radius: 30px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     padding: 12px 40px;
     transition: all 0.3s ease;
}

.header:hover {
     border-color: rgba(59, 167, 118, 0.3);
     box-shadow: 0 8px 32px rgba(59, 167, 118, 0.08);
}

.header-content {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
}

.logo {
     position: absolute;
     left: 0;
}

.logo-link {
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: opacity 0.3s ease;
}

.logo-link:hover {
     opacity: 0.8;
}

.logo img {
     height: 40px;
     width: auto;
     max-width: 200px;
     object-fit: contain;
}

.right-menu {
     position: absolute;
     right: 0;
     display: flex;
     align-items: center;
     gap: 25px;
}

.contact-link {
     color: #ffffff;
     text-decoration: none;
     font-weight: 400;
     font-size: 0.875rem;
     transition: all 0.3s ease;
     position: relative;
     display: block;
}

.contact-link:hover {
     color: #3BA776;
}

.contact-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     transition: width 0.3s ease;
}

.contact-link:hover::after {
     width: 100%;
}

.loading-animation {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 40px;
     width: 40px;
}

.loading-spinner {
     width: 20px;
     height: 20px;
     border: 2px solid rgba(59, 167, 118, 0.2);
     border-top: 2px solid #3BA776;
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

@keyframes spin {
     0% {
          transform: rotate(0deg);
     }

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

.nav-menu {
     display: flex;
     gap: 25px;
     list-style: none;
}

.nav-menu li {
     position: relative;
}

.nav-menu a {
     color: #ffffff;
     text-decoration: none;
     font-weight: 400;
     font-size: 0.875rem;
     transition: all 0.3s ease;
     position: relative;
     display: block;
}

.nav-menu a:hover {
     color: #3BA776;
}

.nav-menu a.active {
     color: #3BA776;
}

.nav-menu a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
     width: 100%;
}

.dropdown {
     position: relative;
}

.dropdown-toggle {
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 5px;
}

.dropdown-toggle svg {
     width: 12px;
     height: 12px;
     transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
     transform: rotate(180deg);
}

.dropdown-menu {
     position: absolute;
     top: calc(100% +15px);
     left: 50%;
     transform: translateX(-50%);
     background: rgba(26, 26, 26, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(59, 167, 118, 0.2);
     border-radius: 12px;
     padding: 8px 0;
     min-width: 200px;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
     transform: translateX(-50%) translateY(-10px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     z-index: 1000;
}

.dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
}

.dropdown-menu-right {
     left: auto;
     right: 0;
     transform: translateY(-10px);
}

.dropdown:hover .dropdown-menu-right {
     transform: translateY(0);
}

.dropdown-menu a {
     padding: 10px 20px;
     display: block;
     color: #ffffff;
     font-size: 0.875rem;
     transition: all 0.3s ease;
}

.dropdown-menu a::after {
     display: none;
}

.dropdown-menu a:hover {
     background: rgba(59, 167, 118, 0.1);
     color: #3BA776;
     padding-left: 24px;
}

.main-content {
     margin-top: 100px;
     min-height: calc(100vh - 200px);
}

.page-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     overflow: visible;
}

.glass-container,
.footer-content {
     background: rgba(26, 26, 26, 0.6);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 30px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     transition: all 0.3s ease;
}

.glass-container {
     padding: 35px;
     margin-bottom: 24px;
}

.glass-container:hover {
     border-color: rgba(59, 167, 118, 0.2);
     box-shadow: 0 8px 32px rgba(59, 167, 118, 0.08);
     transform: translateY(-2px);
}

.spline-container {
     width: 100vw;
     height: 600px;
     margin-left: calc(-50vw +50%);
     margin-bottom: 0;
     position: relative;
     overflow: visible;
     display: flex;
     align-items: center;
     justify-content: center;
}

.spline-container iframe {
     width: 100%;
     height: 100%;
     border: none;
     display: block;
     transform: scale(1.0);
     pointer-events: none;
}

.footer {
     margin-top: -250px;
     margin-bottom: 20px;
     width: calc(100% - 40px);
     max-width: 1400px;
     margin-left: auto;
     margin-right: auto;
     position: relative;
     z-index: 10;
}

.footer-content {
     padding: 25px 50px 18px 50px;
}

.footer-sections {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 20px;
}

.footer-section h4 {
     color: #ffffff;
     font-size: 11px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 12px;
}

.footer-section ul {
     list-style: none;
     padding: 0;
     margin: 0;
}

.footer-section ul li {
     margin-bottom: 8px;
}

.footer-section ul li a {
     color: #ffffff;
     text-decoration: none;
     font-size: 12px;
     font-weight: 300;
     transition: color 0.3s ease;
}

.footer-section ul li a:hover {
     color: #3BA776;
}

.footer-section ul li:not(:has(a)) {
     color: #ffffff;
     font-size: 12px;
     font-weight: 300;
}

.social-icons {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
}

.social-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(59, 167, 118, 0.15);
     border: 1px solid rgba(59, 167, 118, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     text-decoration: none;
     font-size: 13px;
     font-weight: 500;
     transition: all 0.3s ease;
}

.social-icon:hover {
     background: rgba(59, 167, 118, 0.25);
     border-color: rgba(59, 167, 118, 0.4);
     transform: translateY(-2px);
}

.social-icon.linkedin {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: -0.5px;
}

.footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
}

.footer-bottom p {
     color: #ffffff;
     font-size: 12px;
     font-weight: 300;
     margin: 0;
     text-align: left;
     flex: 1;
     min-width: 200px;
     opacity: 0.6;
}

.footer-legal-links {
     text-align: right;
     margin-top: 0;
     font-size: 0.75rem;
     opacity: 0.6;
     transition: opacity 0.3s ease;
}

.footer-legal-links:hover {
     opacity: 0.8;
}

.footer-legal-links a {
     color: #ffffff;
     text-decoration: none;
     transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
     opacity: 1;
     text-decoration: underline;
}

.hero-section {
     padding: 72px 0 48px;
     min-height: calc(100vh - 168px);
     display: grid;
     place-items: center;
     position: relative;
     overflow: hidden;
}

.hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     z-index: -1;
     object-fit: cover;
}

.hero-video-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 0;
}

.hero-content {
     text-align: center;
     max-width: 900px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
}

.hero-title {
     font-size: 3.23rem;
     font-weight: 500;
     line-height: 1.2;
     margin-bottom: 20px;
     color: #ffffff;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out forwards;
}

.glow-text {
     color: #3BA776;
     text-shadow: 0 0 30px rgba(59, 167, 118, 0.5), 0 0 60px rgba(59, 167, 118, 0.3), 0 0 90px rgba(59, 167, 118, 0.15);
}

.about-hero-title .glow-text {
     text-shadow: 0 0 40px rgba(59, 167, 118, 0.6), 0 0 80px rgba(59, 167, 118, 0.4), 0 0 120px rgba(59, 167, 118, 0.2);
}

.hero-subtitle {
     font-size: 1.3rem;
     line-height: 1.6;
     color: #cccccc;
     margin-bottom: 35px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 300;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-ctas {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-ctas .btn {
     min-width: 200px;
     max-width: 420px;
}

.btn {
     display: inline-block;
     padding: 14px 32px;
     font-size: 0.95rem;
     font-weight: 400;
     text-decoration: none;
     border-radius: 30px;
     transition: all 0.3s ease;
     cursor: pointer;
     border: none;
}

.btn-primary {
     background: linear-gradient(135deg, #3BA776, #50C28E);
     color: #ffffff;
}

.btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(59, 167, 118, 0.3);
}

.btn-secondary {
     background: transparent;
     border: 1px solid rgba(59, 167, 118, 0.5);
     color: #3BA776;
}

.btn-secondary:hover {
     border-color: #3BA776;
     background: rgba(59, 167, 118, 0.1);
}

.btn-text {
     background: transparent;
     color: #3BA776;
     padding: 8px 0;
     font-weight: 400;
}

.btn-text:hover {
     color: #50C28E;
}

.problem-section {
     padding: 19px 0 32px;
}

.section-title {
     font-size: 2.2rem;
     font-weight: 500;
     color: #ffffff;
     margin-bottom: 20px;
     text-align: left;
}

.section-title.centered {
     text-align: center;
}

.section-subtitle {
     font-size: 1.2rem;
     color: #cccccc;
     margin-bottom: 40px;
     font-weight: 300;
}

.section-subtitle.centered {
     text-align: center;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 50px;
}

.problem-content {
     max-width: 800px;
     margin: 0 auto;
}

.problem-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #cccccc;
     margin-bottom: 20px;
     font-weight: 300;
}

.solution-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #ffffff;
     margin-bottom: 25px;
}

.solution-text strong {
     color: #3BA776;
     font-weight: 500;
}

.solution-list {
     list-style: none;
     padding: 0;
     margin: 20px 0 25px;
}

.solution-list li {
     font-size: 1rem;
     line-height: 1.7;
     color: #ffffff;
     margin-bottom: 12px;
     padding-left: 28px;
     position: relative;
}

.solution-list li::before {
     content: '•';
     position: absolute;
     left: 0;
     color: #3BA776;
     font-size: 1.5rem;
     line-height: 1;
     font-weight: 600;
}

.about-intro-section {
     padding: 48px 0 60px;
}

.about-intro-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
}

.about-intro-content p {
     font-size: 1rem;
     line-height: 1.7;
     color: #cccccc;
     margin-bottom: 18px;
     font-weight: 300;
}

.about-intro-content .btn {
     margin-top: 10px;
}

.about-intro-visual {
     min-height: 300px;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.05);
}

.modular-model-section {
     padding: 70px 0;
     background: linear-gradient(180deg, transparent, rgba(59, 167, 118, 0.02), transparent);
}

.section-header {
     margin-bottom: 30px;
}

.timeline-service-section .section-header {
     margin-bottom: 20px;
}

.timeline-service-section .section-title {
     font-size: 2.5rem;
     font-weight: 600;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-shadow: 0 0 40px rgba(59, 167, 118, 0.5), 0 0 80px rgba(59, 167, 118, 0.3);
     margin-bottom: 12px;
}

.pillars-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
     margin-bottom: 50px;
}

.pillar-card,
.value-card-extended,
.team-card,
.success-case-card {
     background: rgba(26, 26, 26, 0.6);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     transition: all 0.3s ease;
}

.pillar-card {
     padding: 40px;
}

.value-card-extended {
     padding: 28px;
     margin-bottom: 10px;
}

.team-card {
     padding: 26px;
     text-align: center;
}

.success-case-card {
     padding: 26px;
     text-align: center;
}

.pillar-card:hover {
     border-color: rgba(59, 167, 118, 0.3);
     transform: translateY(-3px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pillar-card.coming-soon {
     position: relative;
}

.pillar-card.coming-soon::after {
     content: "PRÓXIMAMENTE";
     position: absolute;
     top: -8px;
     right: -8px;
     background: #3498db;
     color: white;
     font-size: 0.7rem;
     font-weight: bold;
     padding: 4px 8px;
     border-radius: 4px;
     transform: rotate(15deg);
     z-index: 10;
}

.pillar-number {
     font-size: 0.85rem;
     color: #3BA776;
     font-weight: 500;
     margin-bottom: 12px;
}

.pillar-title {
     font-size: 1.6rem;
     color: #ffffff;
     font-weight: 500;
     margin-bottom: 8px;
}

.pillar-label {
     font-size: 0.85rem;
     color: #3BA776;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 15px;
}

.pillar-description {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #cccccc;
     margin-bottom: 12px;
     font-weight: 300;
}

.pillar-description strong {
     color: #ffffff;
     font-weight: 400;
}

.pillar-link {
     display: inline-block;
     color: #3BA776;
     font-size: 0.9rem;
     text-decoration: none;
     margin-top: 8px;
     font-weight: 400;
}

.pillar-link:hover {
     color: #50C28E;
}

.model-cta-wrapper {
     text-align: center;
     margin-top: 50px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
}

.model-cta-text {
     font-size: 1.1rem;
     color: #ffffff;
     margin-bottom: 0;
}

.model-cta-wrapper .btn {
     min-width: 200px;
     max-width: 420px;
}

.values-section {
     padding: 70px 0;
}

.values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin-bottom: 50px;
}

.value-card {
     background: rgba(26, 26, 26, 0.4);
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 16px;
     padding: 35px;
     transition: all 0.3s ease;
}

.value-card:hover {
     border-color: rgba(59, 167, 118, 0.2);
     background: rgba(26, 26, 26, 0.6);
}

.value-icon {
     width: 50px;
     height: 50px;
     background: rgba(59, 167, 118, 0.1);
     border-radius: 12px;
     margin-bottom: 18px;
}

.value-title {
     font-size: 1.3rem;
     color: #ffffff;
     font-weight: 500;
     margin-bottom: 12px;
}

.value-description {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #cccccc;
     font-weight: 300;
}

.values-cta-wrapper {
     text-align: center;
     margin-top: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.values-cta-wrapper .btn {
     min-width: 200px;
     max-width: 420px;
}

.final-cta-section {
     padding: 60px 0 120px;
}

.cta-buttons-section {
     padding: 40px 0 80px;
}

.final-cta-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
}

.final-cta-title {
     font-size: 2.38rem;
     font-weight: 500;
     color: #ffffff;
     margin-bottom: 20px;
}

.final-cta-text {
     font-size: 1.05rem;
     line-height: 1.7;
     color: #cccccc;
     margin-bottom: 18px;
     font-weight: 300;
}

.final-cta-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     margin-top: 30px;
}

.final-cta-buttons .btn {
     min-width: 200px;
     max-width: 420px;
}

@media (max-width:768px) {
     .header {
          width: calc(100% - 20px);
          padding: 10px 20px;
     }

     .nav-menu {
          gap: 15px;
          font-size: 0.85rem;
     }

     .right-menu {
          gap: 15px;
     }

     .contact-link {
          font-size: 0.85rem;
     }

     .main-content {
          margin-top: 90px;
     }

     .glass-container {
          padding: 25px 20px;
     }

     .spline-container {
          height: 400px;
     }

     .spline-container iframe {
          transform: scale(1.0);
     }

     .footer {
          width: calc(100% - 20px);
     }

     .footer-sections {
          grid-template-columns: 1fr;
          gap: 30px;
     }

     .footer-content {
          padding: 25px 20px 15px 20px;
     }

     .footer-legal-links {
          text-align: center;
          margin-top: 15px;
     }

     .hero-section {
          padding: 56px 0 42px;
          min-height: calc(100vh - 156px);
     }

     .hero-title {
          font-size: 2.125rem;
     }

     .hero-subtitle {
          font-size: 1.15rem;
     }

     .hero-ctas {
          flex-direction: column;
          align-items: stretch;
     }

     .hero-ctas .btn {
          max-width: 100%;
          width: 100%;
     }

     .about-intro-grid {
          grid-template-columns: 1fr;
          gap: 30px;
     }

     .pillars-grid {
          grid-template-columns: 1fr;
          gap: 20px;
     }

     .values-grid {
          grid-template-columns: 1fr;
     }

     .final-cta-title {
          font-size: 1.7rem;
     }

     .final-cta-buttons {
          flex-direction: column;
          align-items: stretch;
     }

     .final-cta-buttons .btn {
          max-width: 100%;
          width: 100%;
     }

     .model-cta-wrapper .btn {
          max-width: 100%;
          width: 100%;
     }

     .values-cta-wrapper .btn {
          max-width: 100%;
          width: 100%;
     }

     /* Bloqueo Total de Desbordamiento */
     html,
     body {
          max-width: 100vw;
          overflow-x: hidden;
          position: relative;
     }

     /* Corrección del Spline Container */
     .spline-container {
          width: 100% !important;
          margin-left: 0 !important;
          left: 0 !important;
          position: relative;
     }

     /* Corrección de Tarjetas de Garantía */
     .pillars-grid {
          display: flex !important;
          flex-direction: column !important;
     }

     /* Ajuste de Padding General */
     .page-container {
          padding: 0 20px;
          overflow: hidden;
     }
}

.about-hero-section {
     padding: 200px 0 120px;
     text-align: center;
}

.about-hero-content {
     max-width: 1000px;
     margin: 0 auto;
}

.about-hero-title {
     font-size: 3.5rem;
     font-weight: 600;
     line-height: 1.15;
     margin-bottom: 32px;
     color: #ffffff;
     letter-spacing: -0.02em;
     animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
     from {
          opacity: 0;
          transform: translateY(30px);
     }

     to {
          opacity: 1;
          transform: translateY(0);
     }
}

.about-hero-subtitle {
     font-size: 1.35rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 300;
     max-width: 800px;
     margin: 0 auto;
     animation: fadeInUp 0.8s ease-out 0.2s both;
}

.who-we-are-section {
     padding: 60px 0;
}

.who-we-are-grid {
     display: grid;
     grid-template-columns: 1.2fr 0.8fr;
     gap: 60px;
     align-items: start;
}

.who-we-are-content {
     padding-right: 20px;
}

.who-we-are-content p {
     margin-bottom: 20px;
     font-size: 1rem;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.9);
}

.brand-relationship-card {
     background: rgba(26, 26, 26, 0.7);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(59, 167, 118, 0.15);
     border-radius: 24px;
     padding: 32px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     position: sticky;
     top: 120px;
}

.relationship-icon {
     display: flex;
     justify-content: center;
     margin-bottom: 24px;
}

.logo-placeholder {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: 700;
     color: #ffffff;
}

.relationship-logo {
     width: 80px;
     height: auto;
     max-width: 120px;
     object-fit: contain;
     filter: brightness(1.1);
     border-radius: 16px;
}

.brand-relationship-card h3 {
     font-size: 1.5rem;
     font-weight: 500;
     margin-bottom: 12px;
     text-align: center;
     color: #ffffff;
}

.relationship-year {
     text-align: center;
     font-size: 0.875rem;
     color: #3BA776;
     font-weight: 500;
     margin-bottom: 20px;
}

.relationship-description {
     font-size: 0.9375rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 16px;
}

.relationship-tagline {
     margin-top: 24px;
     padding-top: 24px;
     border-top: 1px solid rgba(59, 167, 118, 0.2);
     text-align: center;
     font-style: italic;
     color: #3BA776;
     font-size: 0.9375rem;
}

.mission-vision-section {
     padding: 60px 0;
}

.mission-vision-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
}

.mission-card,
.vision-card {
     padding: 32px;
     text-align: center;
}

.mv-icon {
     margin-bottom: 24px;
}

.icon-placeholder {
     font-size: 3rem;
     opacity: 0.8;
     display: flex;
     align-items: center;
     justify-content: center;
}

.mission-card h3,
.vision-card h3 {
     font-size: 1.75rem;
     font-weight: 500;
     margin-bottom: 20px;
     color: #3BA776;
}

.mission-card p,
.vision-card p {
     font-size: 1rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 16px;
}

.lema {
     margin-top: 24px;
     padding-top: 24px;
     border-top: 1px solid rgba(59, 167, 118, 0.2);
     font-size: 1.125rem;
     color: #50C28E;
}

.values-extended-section {
     padding: 60px 0;
}

.values-category {
     margin-bottom: 60px;
}

.values-category:last-child {
     margin-bottom: 0;
}

.values-category-title {
     font-size: 1.5rem;
     font-weight: 500;
     color: #3BA776;
     margin-bottom: 32px;
     padding-bottom: 16px;
     border-bottom: 2px solid rgba(59, 167, 118, 0.2);
}

.values-grid-extended {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 32px;
}

.value-card-extended {
     border: 1px solid rgba(59, 167, 118, 0.15);
     background: rgba(26, 26, 26, 0.7);
}

.value-card-extended:hover {
     transform: translateY(-5px);
     border-color: rgba(59, 167, 118, 0.3);
     box-shadow: 0 12px 40px rgba(59, 167, 118, 0.15);
}

.value-card-extended.inherited {
     border-left: 3px solid rgba(59, 167, 118, 0.3);
}

.value-card-extended.specific-gsm {
     border-left: 3px solid #3BA776;
}

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

.value-card-extended .value-title {
     font-size: 1.25rem;
     font-weight: 500;
     margin-bottom: 12px;
     color: #ffffff;
}

.value-subtitle {
     font-size: 0.875rem;
     font-style: italic;
     color: #3BA776;
     margin-bottom: 16px;
}

.value-list {
     list-style: none;
     padding: 0;
}

.value-list li {
     font-size: 0.9375rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 8px;
     padding-left: 20px;
     position: relative;
}

.value-list li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #3BA776;
     font-weight: 600;
}

.value-description {
     font-size: 0.9375rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.85);
}

.team-section {
     padding: 60px 0;
}

.team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 32px;
}

.team-card {
     border: 1px solid rgba(59, 167, 118, 0.15);
     background: rgba(26, 26, 26, 0.7);
}

.team-card:hover {
     transform: translateY(-5px);
     border-color: rgba(59, 167, 118, 0.3);
     box-shadow: 0 12px 40px rgba(59, 167, 118, 0.15);
}

.team-photo-placeholder {
     width: 120px;
     height: 120px;
     margin: 0 auto 20px;
     background: linear-gradient(135deg, rgba(59, 167, 118, 0.2), rgba(80, 194, 142, 0.2));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 2px solid rgba(59, 167, 118, 0.3);
}

.photo-icon {
     font-size: 3rem;
     opacity: 0.5;
}

.team-name {
     font-size: 1.125rem;
     font-weight: 500;
     color: #ffffff;
     margin-bottom: 8px;
}

.team-role {
     font-size: 0.9375rem;
     color: #3BA776;
     font-weight: 500;
     margin-bottom: 12px;
}

.team-description {
     font-size: 0.875rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.7);
}

.team-photo-container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 48px;
}

.team-photo-wrapper {
     width: 100%;
}

.team-photo-placeholder-large {
     width: 100%;
     min-height: 500px;
     background: linear-gradient(135deg, rgba(59, 167, 118, 0.1), rgba(80, 194, 142, 0.1));
     border-radius: 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border: 2px dashed rgba(59, 167, 118, 0.3);
     gap: 20px;
}

.photo-icon-large {
     opacity: 0.3;
}

.placeholder-text {
     font-size: 1.125rem;
     color: rgba(255, 255, 255, 0.4);
     font-weight: 500;
}

.success-cases-section {
     padding: 60px 0;
}

.success-cases-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 32px;
}

.success-case-card {
     border: 1px solid rgba(59, 167, 118, 0.15);
     background: rgba(26, 26, 26, 0.7);
}

.success-case-card:hover {
     transform: translateY(-5px);
     border-color: rgba(59, 167, 118, 0.3);
     box-shadow: 0 12px 40px rgba(59, 167, 118, 0.15);
}

.case-image-placeholder {
     width: 100%;
     height: 200px;
     background: linear-gradient(135deg, rgba(59, 167, 118, 0.1), rgba(80, 194, 142, 0.1));
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
}

.case-icon {
     font-size: 4rem;
     opacity: 0.3;
}

.case-title {
     font-size: 1.125rem;
     font-weight: 500;
     color: #ffffff;
     margin-bottom: 8px;
}

.case-status {
     font-size: 0.875rem;
     color: rgba(255, 255, 255, 0.5);
     font-style: italic;
}

.success-case-featured {
     max-width: 1200px;
     margin: 0 auto;
     padding: 48px;
}

.featured-case-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
}

.featured-case-visual {
     width: 100%;
}

.case-image-placeholder-large {
     width: 100%;
     min-height: 400px;
     background: linear-gradient(135deg, rgba(59, 167, 118, 0.1), rgba(80, 194, 142, 0.1));
     border-radius: 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border: 2px dashed rgba(59, 167, 118, 0.3);
     gap: 20px;
}

.case-icon-large {
     opacity: 0.3;
}

.featured-case-info {
     display: flex;
     flex-direction: column;
     gap: 24px;
}

.featured-case-title {
     font-size: 2rem;
     font-weight: 600;
     color: #ffffff;
     line-height: 1.2;
}

.featured-case-description {
     font-size: 1.125rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.8);
}

.featured-case-ctas {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
     margin-top: 12px;
}

.featured-case-ctas .btn {
     width: 100%;
     max-width: 420px;
     justify-content: center;
     text-align: center;
}

.stats-aspirational-section {
     padding: 60px 0;
}

.stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 32px;
}

.stat-card {
     padding: 40px 24px;
     text-align: center;
}

.stat-number {
     font-size: 3.5rem;
     font-weight: 600;
     color: #3BA776;
     margin-bottom: 12px;
     line-height: 1;
}

.stat-label {
     font-size: 0.9375rem;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.8);
     font-weight: 400;
}

.dual-cta-section {
     padding: 60px 0 50px;
}

.dual-cta-content {
     padding: 40px 35px;
     text-align: center;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
}

.dual-cta-title {
     font-size: 1.6rem;
     font-weight: 500;
     margin-bottom: 16px;
     color: #ffffff;
}

.dual-cta-text {
     font-size: 1rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 28px;
     max-width: 650px;
     margin-left: auto;
     margin-right: auto;
}

.dual-cta-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
}

.dual-cta-buttons .btn {
     min-width: 200px;
     max-width: 420px;
}

.btn-large {
     padding: 14px 32px;
     font-size: 0.95rem;
}

@media (max-width:968px) {
     .about-hero-section {
          padding: 180px 0 100px;
     }

     .about-hero-title {
          font-size: 2.8rem;
     }

     .about-hero-subtitle {
          font-size: 1.2rem;
     }

     .who-we-are-grid {
          grid-template-columns: 1fr;
          gap: 40px;
     }

     .brand-relationship-card {
          position: relative;
          top: 0;
     }

     .mission-vision-grid {
          grid-template-columns: 1fr;
          gap: 32px;
     }

     .values-grid-extended {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     }

     .team-grid {
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     }

     .team-photo-container {
          padding: 32px 24px;
     }

     .team-photo-placeholder-large {
          min-height: 350px;
     }

     .success-cases-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     }

     .success-case-featured {
          padding: 32px 24px;
     }

     .featured-case-content {
          grid-template-columns: 1fr;
          gap: 32px;
     }

     .featured-case-title {
          font-size: 1.75rem;
     }

     .stats-grid {
          grid-template-columns: repeat(2, 1fr);
     }

     .dual-cta-section {
          padding: 50px 0 40px;
     }

     .dual-cta-content {
          padding: 32px 28px;
     }

     .dual-cta-title {
          font-size: 1.4rem;
     }

     .dual-cta-text {
          font-size: 0.95rem;
     }

     .dual-cta-buttons {
          flex-direction: column;
          align-items: stretch;
     }

     .dual-cta-buttons .btn {
          max-width: 100%;
          width: 100%;
     }

     .btn-large {
          width: 100%;
          max-width: 400px;
     }
}

@media (max-width:640px) {
     .about-hero-section {
          padding: 160px 0 80px;
     }

     .about-hero-title {
          font-size: 2.2rem;
          margin-bottom: 24px;
     }

     .about-hero-subtitle {
          font-size: 1.1rem;
          line-height: 1.6;
     }

     .who-we-are-content p {
          font-size: 0.9375rem;
     }

     .brand-relationship-card {
          padding: 26px 20px;
     }

     .values-grid-extended {
          grid-template-columns: 1fr;
     }

     .team-grid {
          grid-template-columns: 1fr;
     }

     .team-photo-container {
          padding: 24px 16px;
     }

     .team-photo-placeholder-large {
          min-height: 280px;
     }

     .placeholder-text {
          font-size: 1rem;
     }

     .success-cases-grid {
          grid-template-columns: 1fr;
     }

     .success-case-featured {
          padding: 24px 16px;
     }

     .case-image-placeholder-large {
          min-height: 300px;
     }

     .featured-case-title {
          font-size: 1.5rem;
     }

     .featured-case-description {
          font-size: 1rem;
     }

     .featured-case-ctas {
          gap: 12px;
     }

     .featured-case-ctas .btn {
          max-width: 100%;
     }

     .stats-grid {
          grid-template-columns: 1fr;
     }

     .dual-cta-section {
          padding: 40px 0 35px;
     }

     .dual-cta-content {
          padding: 28px 20px;
     }

     .dual-cta-title {
          font-size: 1.25rem;
     }

     .dual-cta-text {
          font-size: 0.9rem;
          margin-bottom: 24px;
     }

     .dual-cta-buttons .btn {
          max-width: 100%;
          width: 100%;
     }

     .btn-large {
          padding: 12px 24px;
          font-size: 0.9rem;
     }
}

.contact-header {
     text-align: center;
     margin-bottom: 40px;
     padding: 30px 0;
}

.contact-title {
     font-size: 2rem;
     font-weight: 600;
     color: #ffffff;
     margin-bottom: 15px;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.contact-subtitle {
     font-size: 1.1rem;
     color: #cccccc;
     max-width: 600px;
     margin: 0 auto;
}

.plan-summary-section,
.discounts-section,
.contact-form-section {
     margin-bottom: 30px;
     padding: 30px;
}

.plan-summary-section .section-title,
.discounts-section .section-title,
.contact-form-section .section-title {
     font-size: 1.5rem;
     color: #3BA776;
     margin-bottom: 20px;
     font-weight: 600;
}

.selected-services-list {
     margin-bottom: 20px;
}

.service-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(59, 167, 118, 0.2);
     border-radius: 8px;
     margin-bottom: 10px;
}

.service-name {
     font-weight: 500;
     color: #ffffff;
}

.service-price-original {
     color: #3BA776;
     font-weight: 600;
     font-size: 1.1rem;
}

.plan-total-initial,
.plan-total-final {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     background: rgba(59, 167, 118, 0.1);
     border: 2px solid #3BA776;
     border-radius: 8px;
     font-size: 1.2rem;
     font-weight: 600;
}

.plan-total-final {
     margin-top: 20px;
     background: rgba(59, 167, 118, 0.15);
}

.price-highlight {
     color: #3BA776;
     font-size: 1.5rem;
}

.final-price {
     font-size: 1.8rem;
     font-weight: 700;
}

.discount-option {
     margin-bottom: 25px;
     padding: 20px;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 8px;
}

.checkbox-label,
.radio-label {
     display: flex;
     align-items: flex-start;
     cursor: pointer;
     font-size: 1rem;
     color: #ffffff;
     margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"],
.radio-option input[type="radio"] {
     margin-right: 10px;
     margin-top: 3px;
     width: 18px;
     height: 18px;
     cursor: pointer;
     accent-color: #3BA776;
}

.radio-label {
     font-weight: 600;
     margin-bottom: 15px;
}

.radio-group {
     display: flex;
     flex-direction: column;
     gap: 10px;
}

.radio-option {
     display: flex;
     align-items: center;
     cursor: pointer;
     padding: 10px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 6px;
     transition: background 0.3s ease;
}

.radio-option:hover {
     background: rgba(59, 167, 118, 0.1);
}

.option-description {
     font-size: 0.9rem;
     color: #aaaaaa;
     margin-top: 10px;
     padding-left: 28px;
}

.discount-breakdown {
     margin-top: 25px;
     padding: 20px;
     background: rgba(59, 167, 118, 0.1);
     border: 1px solid rgba(59, 167, 118, 0.3);
     border-radius: 8px;
}

.discount-title {
     font-size: 1.2rem;
     color: #3BA776;
     margin-bottom: 15px;
     font-weight: 600;
}

.discount-item {
     margin-bottom: 15px;
     padding: 15px;
     background: rgba(0, 0, 0, 0.3);
     border-radius: 6px;
}

.discount-service-name {
     font-weight: 600;
     color: #ffffff;
     margin-bottom: 8px;
}

.discount-price-details {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 5px;
}

.discount-original {
     color: #888;
     text-decoration: line-through;
}

.discount-arrow {
     color: #3BA776;
     font-weight: bold;
}

.discount-final {
     color: #3BA776;
     font-weight: 600;
     font-size: 1.1rem;
}

.discount-savings {
     color: #50C28E;
     font-weight: 500;
     font-size: 0.95rem;
}

.contact-form {
     max-width: 100%;
}

.form-group {
     margin-bottom: 25px;
}

.form-group label {
     display: block;
     margin-bottom: 8px;
     color: #ffffff;
     font-weight: 500;
     font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
     width: 100%;
     padding: 12px 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     color: #ffffff;
     font-size: 1rem;
     font-family: 'Inter', sans-serif;
     transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
     border-color: #3BA776;
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 0 0 3px rgba(59, 167, 118, 0.1);
}

.form-group textarea {
     resize: vertical;
     min-height: 120px;
}

.form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
}

.half-width {
     width: 100%;
}

.full-width {
     width: 100%;
}

.services-checkboxes {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 15px;
     margin-top: 10px;
}

.services-checkboxes .checkbox-label {
     padding: 12px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 6px;
     transition: background 0.3s ease;
}

.services-checkboxes .checkbox-label:hover {
     background: rgba(59, 167, 118, 0.1);
}

.submit-button {
     width: 100%;
     padding: 18px 30px;
     background: linear-gradient(135deg, #3BA776, #50C28E);
     color: #ffffff;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
}

.submit-button:hover {
     background: linear-gradient(135deg, #50C28E, #3BA776);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(59, 167, 118, 0.3);
}

.submit-button:active {
     transform: translateY(0);
}

@media (max-width:768px) {
     .contact-title {
          font-size: 1.5rem;
     }

     .contact-subtitle {
          font-size: 1rem;
     }

     .form-row {
          grid-template-columns: 1fr;
     }

     .services-checkboxes {
          grid-template-columns: 1fr;
     }

     .plan-summary-section,
     .discounts-section,
     .contact-form-section {
          padding: 20px;
     }

     .price-highlight {
          font-size: 1.2rem;
     }

     .final-price {
          font-size: 1.4rem;
     }
}

.toast {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: rgba(26, 26, 26, 0.95);
     backdrop-filter: blur(15px);
     border: 1px solid rgba(59, 167, 118, 0.3);
     border-radius: 12px;
     padding: 16px 24px;
     color: #ffffff;
     font-size: 0.95rem;
     font-weight: 500;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
     z-index: 10000;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.3s ease;
     max-width: 400px;
     word-wrap: break-word;
}

.toast-show {
     opacity: 1;
     transform: translateY(0);
}

.toast-success {
     border-color: rgba(59, 167, 118, 0.5);
     background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(30, 50, 40, 0.95));
}

.toast-error {
     border-color: rgba(230, 126, 34, 0.5);
     background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(50, 30, 20, 0.95));
}

@media (max-width:768px) {
     .toast {
          bottom: 20px;
          right: 20px;
          left: 20px;
          max-width: none;
          padding: 14px 20px;
          font-size: 0.9rem;
     }
}

.back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: rgba(59, 167, 118, 0.9);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(59, 167, 118, 0.3);
     border-radius: 50%;
     color: #ffffff;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
     transition: all 0.3s ease;
     z-index: 999;
     box-shadow: 0 4px 20px rgba(59, 167, 118, 0.3);
}

.back-to-top:hover {
     background: rgba(80, 194, 142, 1);
     transform: translateY(-5px);
     box-shadow: 0 6px 30px rgba(59, 167, 118, 0.5);
}

.back-to-top.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

.back-to-top svg {
     width: 20px;
     height: 20px;
}

@media (max-width:768px) {
     .back-to-top {
          bottom: 20px;
          right: 20px;
          width: 45px;
          height: 45px;
     }

     .back-to-top svg {
          width: 18px;
          height: 18px;
     }
}

/* --- Pantalla de Rotación de Dispositivo --- */
#rotate-device-overlay {
     display: none;
     position: fixed !important;
     top: 0 !important;
     left: 0 !important;
     width: 100% !important;
     height: 100% !important;
     background: #101010 !important;
     z-index: 20000 !important;
     justify-content: center;
     align-items: center;
     text-align: center;
     flex-direction: column;
     pointer-events: auto !important;
     visibility: visible !important;
     opacity: 1 !important;
}

.rotate-device-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     color: #ffffff;
     padding: 40px 30px;
     max-width: 400px;
}

.rotate-icon {
     width: 80px;
     height: 80px;
     animation: rotate-animation 1.5s ease-in-out infinite alternate;
     color: #3BA776;
}

.rotate-icon svg {
     width: 100%;
     height: 100%;
}

@keyframes rotate-animation {
     from {
          transform: rotate(0deg);
     }

     to {
          transform: rotate(90deg);
     }
}

.rotate-device-title {
     font-size: 1.8rem;
     font-weight: 600;
     color: #ffffff;
     margin: 0;
     line-height: 1.3;
}

.rotate-device-message {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #cccccc;
     margin: 0;
     font-weight: 300;
}

.rotate-login-section {
     margin-top: 30px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
}

.rotate-login-title {
     font-size: 1rem;
     font-weight: 500;
     color: #ffffff;
     margin: 0;
}