/* Estilos base heredados */
.calculadora-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.year-label {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.input-section {
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.result-card {
    flex: 1;
    max-width: 400px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.result-label {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.result-tag {
    background: #66ccff;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.result-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 1rem 0;
}

.currency {
    color: #666;
    margin-right: 0.2rem;
}

.copy-btn {
    background: #66ccff;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copy-btn:hover {
    background: #5bb8e5;
    transform: translateY(-1px);
}

.iva-detail {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

/* Estilos para la información adicional */
.info-adicional {
    margin-top: 3rem;
}

.info-adicional h2 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.info-adicional p {
    margin-bottom: 1.5rem;
    color: #555;
}

.info-adicional ul,
.info-adicional ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-adicional li {
    margin-bottom: 0.8rem;
    color: #555;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .results-container {
        flex-direction: column;
        align-items: center;
    }

    .result-card {
        width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }

    .reset-btn, .home-btn {
        width: 100%;
        justify-content: center;
    }

    .calculator-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .content-container {
        padding: 0 15px;
    }
}

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

.reset-btn, .home-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.reset-btn:hover {
    background-color: #e9ecef;
    border-color: #ccc;
}

.home-btn {
    background-color: #66ccff;
    color: white;
    border: none;
    text-decoration: none;
}

.home-btn:hover {
    background-color: #5bb8e5;
    transform: translateY(-2px);
}

/* Estilos para el contenido SEO */
.content-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 20px;
}

.seo-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.seo-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.seo-content h3 {
    color: #444;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.seo-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seo-content ul,
.seo-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-content li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .results-container {
        flex-direction: column;
        align-items: center;
    }

    .result-card {
        width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }

    .reset-btn, .home-btn {
        width: 100%;
        justify-content: center;
    }

    .calculator-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .content-container {
        padding: 0 15px;
    }
}

.monto-input {
    width: 100%;
    padding: 1rem;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: #333;
    background: #f8f9fa;
}

.monto-input::placeholder {
    color: #999;
    font-size: 1.2rem;
    font-weight: normal;
}

.monto-input:focus {
    outline: none;
    border-color: #66ccff;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} 