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

:root {
    --primary-color: #2769b1;
    --secondary-color: #40cfff;
    --accent-purple: #b187d1;
    --accent-pink: #a75593;
    --accent-light: #6cf0ff;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
.daiex-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.daiex-announcement-bar {
    background-color: var(--bg-dark);
    /* Dark navy background */
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.daiex-announcement-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.daiex-announcement-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.daiex-contact-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.daiex-contact-items a {
    color: var(--accent-purple);
    /* Corporate lilac color */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
    font-weight: 600;
}

.daiex-contact-items a:hover {
    opacity: 0.8;
}

.daiex-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.daiex-social-icons a {
    color: var(--white);
    font-size: 16px;
    transition: transform 0.2s;
}

.daiex-social-icons a:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .daiex-announcement-flex {
        justify-content: center;
        text-align: center;
    }

    .daiex-contact-items {
        flex-direction: column;
        gap: 10px;
    }
}

.daiex-header-top {
    background: var(--bg-light);
    padding: 8px 0;
    text-align: right;
    font-size: 12px;
}

.daiex-language-selector {
    display: inline-block;
}

.daiex-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.daiex-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.daiex-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

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

.daiex-nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.daiex-nav-menu a:hover {
    color: var(--primary-color);
}

.daiex-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.daiex-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
}

.daiex-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.daiex-btn-primary.large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Hero Section */
.daiex-hero {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.daiex-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.daiex-abstract-lines {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 70%, transparent 70%);
    background-size: 60px 60px;
}

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

.daiex-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.daiex-hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.daiex-hero-actions {
    margin-top: 30px;
}

/* Intro Section */
.daiex-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.daiex-intro-content h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Section Title */
.daiex-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.daiex-section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Para quién Section */
.daiex-target-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.daiex-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.daiex-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(177, 135, 209, 0.2);
    border-top: 3px solid var(--accent-purple);
}

.daiex-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.daiex-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.daiex-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.daiex-card-tag {
    font-size: 14px;
    color: var(--accent-pink);
    font-weight: 600;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Por qué Section */
.daiex-benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.daiex-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.daiex-feature-card {
    text-align: center;
    padding: 30px;
}

.daiex-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.daiex-feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.daiex-feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Cómo funciona Section */
.daiex-how-it-works-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.daiex-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.daiex-step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.daiex-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(39, 105, 177, 0.3);
}

.daiex-step-icon {
    font-size: 48px;
    margin: 20px 0 15px 0;
}

.daiex-step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.daiex-step-card p {
    color: var(--text-light);
    font-size: 15px;
}

.daiex-steps-note {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* Cambio legal Section */
.daiex-trust-section {
    padding: 80px 0;
    background: var(--white);
}

.daiex-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.daiex-stat-card {
    text-align: center;
    padding: 30px;
}

.daiex-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.daiex-stat-label {
    font-size: 18px;
    color: var(--text-light);
}

/* Contact Section */
.daiex-contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.daiex-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.daiex-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.daiex-form-group input,
.daiex-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.daiex-form-group input:focus,
.daiex-form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(64, 207, 255, 0.1);
}

.daiex-form-group textarea {
    resize: vertical;
}

/* Footer */
.daiex-footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

.daiex-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.daiex-footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.daiex-footer-section ul {
    list-style: none;
}

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

.daiex-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.daiex-footer-section a:hover {
    color: var(--white);
}

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

.daiex-footer-links {
    display: flex;
    gap: 20px;
}

.daiex-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

    .daiex-hero-title {
        font-size: 32px;
    }

    .daiex-hero-subtitle {
        font-size: 18px;
    }

    .daiex-section-title {
        font-size: 28px;
    }

    .daiex-cards-grid,
    .daiex-features-grid,
    .daiex-steps-grid,
    .daiex-stats-grid {
        grid-template-columns: 1fr;
    }

    .daiex-header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .daiex-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}