/* ================================
   ÁNGELES ROMERO - SITIO PERSONAL
   ================================ */

:root {
    --primary-color: #22c55e;
    --secondary-color: #16a34a;
    --accent-color: #ffffff;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 17, 17, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
}


@font-face {
    font-family: 'Westgate';
    src: url('../assets/fonts/Westgate-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



.icon-primary {
    color: #22c55e;
}

.icon-white {
    color: white;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Westgate', sans-serif;
    font-size: 2.5rem; 
    color: #ffffff;
    display: inline-block;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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



.hero {
    min-height: 100vh;
    position: relative;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: flex-start;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}



.hero-main {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: flex-start;
}



.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}



.hero-image img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    margin: 0;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .hero-badge {
    align-self: flex-start;

    margin-bottom: 2rem;

    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

    padding: 0.7rem 1.4rem;
    border-radius: 999px;

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}


.hero h1 {
    font-size: clamp(1.9rem, 4.1vw, 2.9rem);
    font-weight: 900;
    margin-bottom: 1.2rem;
    margin-top: 2.2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.08;
    max-width: 22ch;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 2.2rem;
}



.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}


.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}



@media (max-width: 900px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image img {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-image .hero-badge {
        top: 12px;
        left: 12px;
        font-size: 0.72rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

.cta-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 1rem;
        align-items: center;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        padding: 0.3rem 0;
    }

    .mobile-menu {
        grid-column: 2;
        grid-row: 1;
        display: flex;
    }

    .navbar {
        padding: 0.8rem 0;
    }

   .cta-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% - 2rem);
    justify-self: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 60px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 90px;
    }

    .security-badge {
        bottom: 25px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding-top: 180px;
    }

    body, html {
    overflow-x: hidden;
    max-width: 100vw;
    }

}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.whatsapp-float {
        bottom: 90px;
    }

.security-badge {
        bottom: 25px;
    }
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 140px 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

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

    .hero-buttons {
        margin-top: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .whatsapp-float {
    padding: 0.65rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float svg {
    width: 28px;
    height: 28px;
    }

    .security-badge {
    padding: 0.6rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
    font-size: 0;
    color: transparent;
    }

    .security-badge svg {
    width: 24px;
    height: 24px;
    }
    .security-badge i {
    font-size: 1rem;
    }
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-primary);
    border-color: var(--secondary-color);
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}



#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 2%;
    width: 500px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 8s ease-in-out infinite;
}

#about::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 2%;
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 15% 25%, rgba(34, 197, 94, 0.8), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(34, 197, 94, 0.6), transparent),
        radial-gradient(3px 3px at 65% 35%, rgba(34, 197, 94, 0.7), transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(34, 197, 94, 0.5), transparent),
        radial-gradient(2px 2px at 25% 75%, rgba(34, 197, 94, 0.6), transparent),
        radial-gradient(1px 1px at 75% 85%, rgba(34, 197, 94, 0.8), transparent);
    background-size: 200px 150px;
    pointer-events: none;
    z-index: -1;
    animation: sparkle-about 20s linear infinite;
    opacity: 0.8;
}

.credentials::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 12s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes sparkle-about {
    0% { 
        opacity: 0.8;
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        opacity: 0.5;
        transform: translateY(-3px) rotate(90deg);
    }
    50% { 
        opacity: 0.3;
        transform: translateY(-5px) rotate(180deg);
    }
    75% { 
        opacity: 0.5;
        transform: translateY(-2px) rotate(270deg);
    }
    100% { 
        opacity: 0.8;
        transform: translateY(0px) rotate(360deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--primary-color);
}


.arquitectura-origen {
  background: transparent;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.arquitectura-container {
  max-width: 760px;
  margin: 0 auto;
}

.arquitectura-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.arquitectura-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.arquitectura-text p:last-child {
  margin-bottom: 0;
}

.arquitectura-quote {
  margin-top: 3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .arquitectura-container {
    padding: 0 1rem;
  }

  .arquitectura-title {
    font-size: 1.9rem;
  }

  .arquitectura-text p {
    font-size: 1rem;
  }
}


.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.founder-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.4);
}

.experience-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1rem;
    background: var(--gradient-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.highlight-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.credential-item {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.credential-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}



.aquela-highlight {
    background: var(--gradient-card);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.aquela-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.aquela-content {
    position: relative;
}

.aquela-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aquela-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.aquela-description strong {
    color: var(--primary-color);
}


.cases-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.case-item {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.case-roi {
    color: var(--primary-color);
    font-weight: 700;
}

.case-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.case-detail h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card-compact {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 15px 15px 0 0;
}

.service-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.service-card-compact .service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-card-compact .service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-card-compact .service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card-compact .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

.bugbounty-card {
    max-width: 1200px;
    margin: 3rem auto 0;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.bugbounty-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.community-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .bugbounty-card {
        flex-direction: column;
        text-align: center;
    }
}




.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-info-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.work-modality {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
}

.modality-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.modality-item {
    margin-bottom: 0.5rem;
}

.modality-item:last-child {
    margin-bottom: 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.hp-field{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  white-space:nowrap;
}


.form-title {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-steps {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.steps-title {
    margin-bottom: 1rem;
}



.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    cursor: pointer;
    font-weight: 600;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}
.form-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.whatsapp-advertencia {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.advertencia-titulo {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.advertencia-lista {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.advertencia-lista li {
    margin-bottom: 0.5rem;
}

.checkbox-advertencia {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-advertencia input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}



.security-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.8rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}



.footer {
    background: var(--bg-secondary);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}



.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.12;
}


.text-green { 
    color: #22c55e;
    font-weight: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}



@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }


    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-photo {
        max-width: 280px;
    }

    .highlight-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }

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

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

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

   

    .section {
        padding: 3rem 1rem;
    }

    .aquela-pillars {
        grid-template-columns: 1fr;
    }

  
    .security-badge {
    right: 15px;
    font-size: 0;
    padding: 0.6rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: transparent;
    }

    .logo-text {
        font-size: 2rem;
    }
}

.timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  margin-top: 2rem;
  padding: 2.5rem 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  min-height: 6rem;
}

.timeline-item {
  position: relative;
  text-align: center;
  flex: 1;
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.timeline-point {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border: 3px solid white;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.timeline-point:hover {
  transform: scale(1.2);
}

.tooltip-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
}

/* Crear área de hover invisible entre el punto y los tooltips */
.tooltip-group::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1.5rem;
  pointer-events: all;
}

/* Activar tooltips al hacer hover sobre el item O sobre los tooltips */
.timeline-item:hover .tooltip-group,
.timeline-item:has(.tooltip-group:hover) .tooltip-group {
  opacity: 1;
  pointer-events: all;
}

.tooltip {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.15);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tooltip:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.tooltip span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tooltip:hover span {
  color: rgba(255, 255, 255, 0.85);
}


.stack-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stack-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 135, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.stack-category:hover {
    border-color: rgba(0, 255, 135, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.1);
}

.stack-category-title {
    color: #00ff87;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-badge {
    background: rgba(0, 255, 135, 0.05);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(0, 255, 135, 0.1);
    border-color: rgba(0, 255, 135, 0.4);
    transform: scale(1.05);
}

.tech-icon {
    width: 18px;
    height: 18px;
    color: #00ff87;
}

.rootwomen-section {
    
    padding: 80px 20px;
}

.rootwomen-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.1) 0%, rgba(0, 200, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 135, 0.3);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 255, 135, 0.2);
}

.rootwomen-content {
    display: flex;
    align-items: center;
    gap: 40px;
}



.rootwomen-icon i {
    width: 50px;
    height: 50px;
}

.rootwomen-logo {
    height: 100px;
    width: auto;
}

.rootwomen-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.rootwomen-subtitle {
    font-size: 1.3rem;
    color: #00ff87;
    margin-bottom: 20px;
    font-weight: 500;
}

.rootwomen-description {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.rootwomen-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-badge {
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: rgba(0, 255, 135, 0.2);
    transform: translateY(-2px);
}

.btn-rootwomen {
    background: linear-gradient(135deg, #00ff87 0%, #00c9ff 100%);
    color: #0a0a0a;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.3);
}

.btn-rootwomen:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.5);
}

.communities-section {
    background: #0a0a0a;
    padding: 80px 20px;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.community-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 135, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    border-color: rgba(0, 255, 135, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.15);
}

.community-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.community-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.community-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.community-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.community-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff87;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.community-link:hover {
    color: #00c9ff;
    gap: 12px;
}

.speaking-cta {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.05) 0%, rgba(0, 200, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 135, 0.2);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
}

.speaking-cta h3 {
    color: #00ff87;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.speaking-cta p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.aquela-cta-box {
    background: rgba(0, 255, 135, 0.05);
    border: 2px solid rgba(0, 255, 135, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.aquela-cta-box h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.platform-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.platform-badge {
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    color: #e0e0e0;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-aquela {
    background: linear-gradient(135deg, #00ff87 0%, #00c9ff 100%);
    color: #0a0a0a;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.3);
}

.btn-aquela:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.5);
}
.aquela-header-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .aquela-header-logo {
        height: 60px;
    }
}
@media (max-width: 768px) {
    .rootwomen-banner {
        padding: 40px 25px;
    }

    .rootwomen-content {
        flex-direction: column;
        text-align: center;
    }

    .rootwomen-title {
        font-size: 2rem;
    }

    .rootwomen-highlights {
        justify-content: center;
    }

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

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

    .speaking-cta {
        padding: 30px 20px;
    }

    .speaking-cta h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .aquela-cta-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .rootwomen-icon {
        width: 80px;
        height: 80px;
    }

    .rootwomen-icon i {
        width: 40px;
        height: 40px;
    }

    .tech-badges {
        flex-direction: column;
    }

    .tech-badge {
        width: 100%;
        justify-content: center;
    }

    .platform-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-badge {
        justify-content: center;
    }
}

.modal-agenda {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
     overflow-y: auto;
    padding: 2rem 0;
}

.modal-agenda.active {
    display: block;
}

.modal-agenda-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    position: relative;
    margin: 0 auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-agenda-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.modal-agenda-intro {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-agenda-list {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-agenda-list li {
    margin-bottom: 0.5rem;
}

.modal-agenda-footer {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-agenda-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-agenda-content {
        padding: 2rem;
    }

    .modal-agenda-title {
        font-size: 1.5rem;
    }
}