* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,#020617 45%,rgba(2,6,23,0.6));
}

.hero-container {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    max-width: 550px;
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #d1d5db;
}

.hero h1 .blue {
    color: #3b82f6;
}

.hero h1 .gold {
    color: #f59e0b;
}

.hero p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #1d4ed8;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: #d97706;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #f59e0b;
}

.hero-right {
    flex: 1;
    height: 650px;
    background-image: url(../img/laptop.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0.8;
    position: relative;
}

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#020617 0%, transparent 60%);
}

.problems {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.problems h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #d1d5db;
    margin-bottom: 20px;
}

.problems .subtitle {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 60px;
}

.blue {
    color: #3b82f6;
}

.gold {
    color: #f59e0b;
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

.card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    cursor: pointer;
    text-align: left;
}

.card p {
    color: #d1d5db;
    font-size: 16px;
}

.icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.icon.gold {
    background: rgba(59, 158, 11, 0.15);
    color: #f59e0b;
}

.card:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 0 10px rgba(59, 130, 246, 0.3),
        0 0 25px rgba(59, 130, 246, 0.2),
        0 0 50px rgba(59, 130, 246, 0.15);
}

.card:nth-child(2):hover,
.card:nth-child(4):hover {
    box-shadow:
        0 0 10px rgba(245, 158, 11, 0.4),
        0 0 25px rgba(245, 158, 11, 0.3),
        0 0 50px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}

.cta-box {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #d1d5db;
    font-size: 18px;
}

@media(max-width:768px) {

    .problems h2 {
        font-size: 28px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }
}

.services {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
}

.services h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #d1d5db;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: left;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #e5e7eb;
}

.service-card p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #9ca3af;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card li:before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 14px;
}

.service-card:nth-child(2) li:before {
    color: #f59e0b;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 0 10px rgba(59, 130, 246, 0.3),
        0 0 25px rgba(59, 130, 246, 0.2),
        0 0 50px rgba(59, 130, 246, 0.15)    
    ;
}

.service-card:nth-child(2):hover {
    box-shadow:
        0 0 10px rgba(245, 158, 11, 0.4),
        0 0 25px rgba(245, 158, 11, 0.3),
        0 0 50px rgba(245, 158, 11, 0.2)
    ;
    border-color: rgba(245, 158, 11, 0.5);
}

@media(max-width:900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 28px;
    }
}

.portfolio {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
}

.portfolio h2 {
    font-size: 42px;
    font-weight: 800;
    color: #d1d5db;
    margin-bottom: 20px;
}

.portfolio .subtitle {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: all 0.35s ease;
}

.image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.9), transparent);
}

.content {
    padding: 25px;
}

.content h3 {
    color: #e5e7eb;
    margin-bottom: 10px;
    font-size: 20px;
}

.content p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.btn-outline.gold {
    border-color: rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

.btn-outline.gold:hover {
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 10px rgba(59, 130, 246, 0.2),
        0 0 25px rgba(59, 130, 246, 0.15)    
    ;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card:nth-child(2):hover {
    box-shadow:
        0 0 10px rgba(245, 158, 11, 0.3),
        0 0 25px rgba(245, 158, 11, 0.2)
    ;
}

@media(max-width:900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio h2 {
        font-size: 28px;
    }
}

.products {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
}

.products-header {
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.products h2 {
    font-size: 42px;
    font-weight: 800;
    color: #d1d5db;
    margin: 20px 0;
}

.products p {
    color: #9ca3af;
    font-size: 18px;
}

.product-card{
    position:relative;
    border-radius:30px;
    padding:50px;
    background:radial-gradient(circle at top left, rgba(59,130,246,0.15), transparent 40%),
           radial-gradient(circle at bottom right, rgba(245,158,11,0.15), transparent 40%),
           #020617;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 60px rgba(59,130,246,0.15),
        0 0 80px rgba(245,158,11,0.1);

    overflow:hidden;
}

.featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f59e0b;
    color: #000;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-title h3 {
    font-size: 32px;
    color: #f59e0b;
}

.description {
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.left h4 {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.left ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.left li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #9ca3af;
}

.left li:before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: #f59e0b;
    color: #000;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.btn-outline {
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.right img {
    width: 100%;
    border-radius: 20px;
    opacity: 0.9;
    transition: 0.4s;
}

.product-card:hover .right img {
    transform: scale(1.03);
}

@media(max-width:900px){

.product-content{
grid-template-columns:1fr;
}

.product-card{
padding:30px;
}

.products h2{
font-size:28px;
}

}

.process {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
    position: relative;
}

.process h2 {
    font-size: 42px;
    font-weight: 800;
    color: #d1d5db;
    margin-bottom: 80px;
}

.process-line {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
}

.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    border: 2px solid;
    transition: 0.3s;
}

/* AZUL */
.step.blue .circle {
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

.step.blue .step-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* DORADO */
.step.gold .circle {
    border-color: #f59e0b;
    color: #f59e0b;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.step.gold .step-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.step-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.step h3 {
    color: #e5e7eb;
    margin-bottom: 10px;
    font-size: 20px;
}

.step p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.5;
    max-width: 220px;
    margin: auto;
}

.step:hover .circle {
    transform: scale(1.1);
}

.step.blue:hover .circle {
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(59, 130, 246, 0.3)    
    ;
}

.step.gold:hover .circle {
    box-shadow:
        0 0 20px rgba(245, 158, 11, 0.5),
        0 0 40px rgba(245, 158, 11, 0.3)    
    ;
}

@media(max-width:900px){

.process-grid{
grid-template-columns:1fr;
gap:50px;
}

.process-line {
    display: none;
}

.process h2{
font-size:28px;
}

}

.why {
    padding: 120px 20px;
    background: #020617;
    text-align: center;
}

.why h2 {
    font-size: 42px;
    font-weight: 800;
    color: #d1d5db;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.icon.blue {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.why-card h3 {
    color: #e5e7eb;
    font-size: 18px;
    margin-bottom: 5px;
}

.why-card p {
    color: #9ca3af;
    font-size: 14px;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 0 10px rgba(59, 130, 246, 0.2),
        0 0 30px rgba(59, 130, 246, 0.1)   
    ;
}

.why-card:nth-child(2):hover,
.why-card:nth-child(4):hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow:
        0 0 10px rgba(245, 158, 11, 0.3),
        0 0 30px rgba(245, 158, 11, 0.15)    
    ;
}

@media(max-width:768px){

.why-grid{
grid-template-columns:1fr;
}

.why h2{
font-size:28px;
}

}

.cta {
    padding: 120px 20px;
    background: #020617;
    display: flex;
    justify-content: center;
}

.cta-box {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.15), transparent 40%),
        radial-gradient(circle at bottom right, rgba(245,158,11,0.15), transparent 40%),
        #020617
    ;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 60px rgba(59, 130, 246, 0.15),
        0 0 80px rgba(245,158,11,0.1)    
    ;
}

.badge-cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #d1d5db;
    margin-bottom: 20px;
}

.cta-box p {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* BOTÓN AZUL */
.btn-primary {
    background: #1d4ed8;
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
    background: #16a34a;
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #9ca3af;
}

@media(max-width:768px){

.cta-box{
padding:40px 20px;
}

.cta-box h2{
font-size:28px;
}

.cta-buttons{
flex-direction:column;
}

.cta-features{
flex-direction:column;
gap:10px;
}

}

.cta-box .blue{
background:linear-gradient(90deg,#3b82f6,#60a5fa);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.footer {
    background: #020617;
    padding: 80px 20px 30px;
    color: #9ca3af;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    color: #e5e7eb;
    margin: 15px 0 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#3b82f6,#f59e0b);
    color: white;
    font-weight: bold;
}

.footer-links h4{
color:#3b82f6;
margin-bottom:15px;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#9ca3af;
transition:0.3s;
}

.footer-links a:hover{
color:#60a5fa;
}

.footer-social h4{
color:#f59e0b;
margin-bottom:15px;
}

.social-icons{
display:flex;
gap:12px;
}

.social-icons a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;

background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.05);

color:#9ca3af;
text-decoration:none;
font-size:18px;

transition:0.3s;
}

.social-icons a:hover{
color:white;
border-color:#3b82f6;
box-shadow:
0 0 10px rgba(59,130,246,0.4),
0 0 25px rgba(59,130,246,0.2);

transform:translateY(-3px);
}

.footer hr{
border:none;
height:1px;
background:rgba(255,255,255,0.05);
margin:50px auto 20px;
max-width:1100px;
}

.footer .copyright{
text-align:center;
font-size:14px;
color:#6b7280;
}

@media(max-width:768px){

.footer-container{
flex-direction:column;
align-items:center;
text-align:center;
}

.footer-brand{
max-width:100%;
}

.social-icons{
justify-content:center;
}

}