:root {
    --primary-color: #0073ea;
    --secondary-color: #00ca72;
    --background-color: #f7f7f7;
    --text-color: #323338;
    --text-color-light: #676879;
    --card-background: #ffffff;
    --border-radius: 4px;
    --shadow: rgb(0 0 0 / 8%) 0px 2px 4px, rgb(0 0 0 / 6%) 0px 0px 2px;
    --monday-font: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

@import url('/img/fondo.png');

body {
    font-family: var(--monday-font);
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

/* Monday.com-style CSS */
:root {
    --primary-color: #6C6CFF;
    --secondary-color: #00A0A0;
    --text-color: #333333;
    --text-color-light: #676879;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Figtree', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.navbar {
    background: var(--white);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-contact a {
    color: var(--text-color-light);
    text-decoration: none;
    margin-left: var(--spacing-md);
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.hero {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(135deg, #F0F0FF 0%, #FFFFFF 100%);
    margin-top: 60px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    padding-right: var(--spacing-xl);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #9090FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-color-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(108, 108, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(108, 108, 255, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(108, 108, 255, 0.05);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(108, 108, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.features,
.services,
.pricing,
.contact {
    padding: var(--spacing-xl) 0;
}

.features {
    background: var(--white);
}

.feature-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card,
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-image,
.service-image {
    position: relative;
    overflow: hidden;
}

.feature-image img,
.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img,
.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-content,
.service-content {
    padding: var(--spacing-md);
}

.feature-content h3,
.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-color);
}

.feature-content p,
.service-content p {
    color: var(--text-color-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-color-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary-color);
    margin-right: var(--spacing-xs);
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-color-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary-color);
    margin-right: var(--spacing-xs);
    font-weight: bold;
}

.gallery {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.life-in-paraguay {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.cost-comparison-section {
    margin: var(--spacing-xl) 0;
}

.cost-comparison-section h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.8em;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.cost-comparison-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.cost-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1000px;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table th {
    background: var(--primary);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-table th:last-child {
    border-right: none;
}

.cost-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1.05em;
}

.cost-table td:last-child {
    border-right: none;
}

.cost-table td:first-child {
    font-weight: 500;
}

.cost-table tbody tr:last-child td {
    border-bottom: none;
}

.cost-table tbody tr:hover {
    background: var(--background-light);
}

.savings {
    color: #2ecc71;
    font-weight: bold;
    position: relative;
    padding-right: 24px;
}

.savings:after {
    content: '↓';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.4em;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border);
}

.info-box h3 i {
    font-size: 1.2em;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: var(--spacing-md);
    padding-left: 1.5em;
    position: relative;
    line-height: 1.5;
}

.info-box ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--background-light);
    border-radius: var(--radius-md);
    position: relative;
    margin-left: 20px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-item .age {
    font-weight: bold;
    color: var(--primary);
    min-width: 80px;
}

.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.opp-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.opp-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.opp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.opp-card:hover:before {
    opacity: 1;
}

.opp-card h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.opp-card p {
    font-size: 0.9em;
    line-height: 1.4;
    color: var(--text-secondary);
}

.contact {
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-color-light);
    margin-bottom: var(--spacing-xs);
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    .hero-image {
        transform: none;
    }

    .pricing-card.featured {
        transform: none;
    }

    .nav-contact {
        display: none;
    }
} {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/campo.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

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

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    text-transform: capitalize;
    box-shadow: 0 2px 6px rgba(0, 115, 234, 0.3);
}

.cta-button:hover {
    background-color: #005bb7;
}

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

.section:nth-child(even) {
    padding: 6rem 2rem;
}

.section:nth-child(even) .section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.benefit-card, .service-card {
    background-color: var(--card-background);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: all 0.2s;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.benefit-card:hover, .service-card:hover {
    box-shadow: rgb(0 0 0 / 10%) 0px 8px 24px;
    transform: translateY(-4px);
}

.benefit-card h3, .service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.benefit-card p, .service-card p {
    font-size: 0.875rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

.benefit-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .card-image,
.service-card:hover .card-image {
    transform: scale(1.05);
}

.costs-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: white;
}

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

.pricing-card {
    background: linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 251, 251) 100%);
    border: 1px solid rgb(225, 225, 225);
    transition: all 0.2s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: rgb(0 0 0 / 10%) 0px 8px 24px;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card li {
    margin: 0.5rem 0;
}

.documents-list {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.documents-list ul {
    list-style: none;
}

.documents-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.documents-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.footer-contact {
    text-align: center;
}

.footer-contact h3 {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}
