/* 
   DISEÑO WEB COLOMBIA - LANDING PAGE STYLES
   Estilo moderno tipo Startup (Stripe/Webflow style)
*/

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #10b981;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

.dw-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dw-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO SECTION */
.dw-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

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

.dw-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dw-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dw-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dw-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.dw-btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
}

/* BENEFICIOS */
.dw-benefits {
    background: var(--white);
}

.dw-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.dw-section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.dw-section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dw-benefit-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dw-benefit-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.dw-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.dw-benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}

.dw-benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICIOS */
.dw-services {
    background: var(--bg-light);
}

.dw-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.dw-service-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.dw-service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.dw-service-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dw-service-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.dw-service-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.dw-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-top: auto;
    text-align: center;
    justify-content: center;
}

.dw-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* CONFIANZA / DIFERENCIADORES */
.dw-trust {
    background: var(--secondary);
    color: var(--white);
}

.dw-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dw-trust-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
}

.dw-trust-list {
    list-style: none;
    padding: 0;
}

.dw-trust-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.dw-trust-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 4px;
}

.dw-trust-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.dw-trust-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* SEO LOCAL */
.dw-local-seo {
    background: var(--white);
    text-align: center;
}

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

.dw-local-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.dw-local-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* PLANES */
.dw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dw-price-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.dw-price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    position: relative;
}

.dw-price-card.featured::top {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.dw-price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.dw-price-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--secondary);
}

.dw-price-value span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.dw-price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.dw-price-features li {
    margin-bottom: 16px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
}

.dw-price-features li i {
    color: var(--accent);
}

/* CTA FINAL */
.dw-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.dw-cta-final h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
}

.dw-cta-final p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 1;
}

.dw-btn-white {
    background: var(--white);
    color: var(--primary);
}

.dw-btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dw-trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dw-trust-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .dw-section {
        padding: 60px 20px;
    }
    .dw-hero {
        padding: 120px 20px 80px;
    }
    .dw-hero h1 {
        font-size: 2.5rem;
    }
    .dw-price-card.featured {
        transform: none;
    }
}
